Forums     Knowledge Base     OfficeWriter Online     
 
 
This documentation is for
OfficeWriter v3.8.1
.NET Platform

View Docs for Another
Version or Platform

Programmer's Reference > WordApplication API > TableFormatting > LeftIndent

LeftIndent Property


C# Signature:

VB.NET Signature:


Description:

Sets or returns an int that represents the left indent for a table created with this formatting in twips. One twip = (1/20 pt) or (1/1440 in).

LeftIndent is a read / write property.



Examples:

[csharp]
// Return LeftIndent
int leftIndent = oTableFormatting.LeftIndent;
// Set LeftIndent to 1 inch
oTableFormatting.LeftIndent = 1440;
[vbnet]
' Return LeftIndent
Dim leftIndent As Integer = oTableFormatting.LeftIndent
' Set LeftIndent to 1 inch
oTableFormatting.LeftIndent = 1440


Getter

Signature:

public int LeftIndent

Returns:

int An int that represents the left indent for a table created with this formatting in twips.

Setter

Signature:

public void LeftIndent int indent

Type:

int



Copyright 2007 © SoftArtisans, Inc. All Rights Reserved.