Rows.SetLeftIndent Method

Sets the indentation for a row or rows in a table.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Sub SetLeftIndent ( _
    LeftIndent As Single, _
    RulerStyle As WdRulerStyle _
)
'Usage
Dim instance As Rows
Dim LeftIndent As Single
Dim RulerStyle As WdRulerStyle

instance.SetLeftIndent(LeftIndent, RulerStyle)
void SetLeftIndent(
    float LeftIndent,
    WdRulerStyle RulerStyle
)

Parameters

  • LeftIndent
    Type: System.Single
    Required Single. The distance (in points) between the current left edge of the specified row or rows and the desired left edge.
  • RulerStyle
    Type: Microsoft.Office.Interop.Word.WdRulerStyle
    Required WdRulerStyle. Controls the way Microsoft Word adjusts the table when the left indent is changed. Can be one of the following WdRulerStyle constants:
    wdAdjustNone – Adjusts the left edge of row or rows, preserving the width of all columns by shifting them to the left or right. This is the default value.
    wdAdjustSameWidth – Adjusts the left edge of the first column, preserving the position of the right edge of the table by setting the widths of all the cells in the specified row or rows to the same value.
    wdAdjustFirstColumn – Adjusts the left edge of the first column only, preserving the positions of the other columns and the right edge of the table.
    wdAdjustProportional – Adjusts the left edge of the first column, preserving the position of the right edge of the table by proportionally adjusting the widths of all the cells in the specified row or rows.

Remarks

The WdRulerStyle behavior described above applies to left-aligned tables. The WdRulerStyle behavior for center- and right-aligned tables can be unexpected; in these cases, the SetLeftIndent method should be used with care.

See Also

Reference

Rows Interface

Rows Members

Microsoft.Office.Interop.Word Namespace