Paragraph.TabIndent Method 

Sets the left indent for the specified paragraphs to a specified number of tab stops.

Namespace: Microsoft.Office.Interop.Word
Assembly: Microsoft.Office.Interop.Word (in microsoft.office.interop.word.dll)

Usage

Dim Count As Short
Dim paragraph1 As Paragraph
paragraph1.TabIndent(Count)

Syntax

Sub TabIndent( _
    <InAttribute()> ByVal Count As Short _
)
void TabIndent(
    [In] short Count
);
public: Void TabIndent(
    Int16 Count
);
public void TabIndent(
    /*in*/short Count
);
function TabIndent(
     Count : Int16
);

Parameters

  • Count
    Required Integer. The number of tab stops to indent (if positive) or the number of tab stops to remove from the indent (if negative).

Remarks

This method can be used to remove the indent if the value of Count is a negative number.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

Paragraph Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

Paragraph Members