Paragraph.AutoAdjustRightIndent Property 

Determines if Microsoft Word is set to automatically adjust the right indent for the specified paragraphs if you’ve specified a set number of characters per line.

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

Usage

Dim paragraph1 As Paragraph

Dim returnValue As Integer
returnValue = paragraph1.AutoAdjustRightIndent

Dim sampleValue As Integer
paragraph1.AutoAdjustRightIndent = sampleValue

Syntax

Property AutoAdjustRightIndent() As Integer
int AutoAdjustRightIndent {get; set;}
property Int32 AutoAdjustRightIndent{
    Int32 get();
    Void set(Int32);
}
public int get_AutoAdjustRightIndent();
public void set_AutoAdjustRightIndent(int);
function get AutoAdjustRightIndent() : int;
function set AutoAdjustRightIndent(int);

Remarks

This property returns True if Word is set to automatically adjust the right indent for the specified paragraphs if you’ve specified a set number of characters per line, and False if not. Set the property value to True or False to enable or disable the functionality.

This property returns wdUndefined if the AutoAdjustRightIndent property is set to True for only some of the specified paragraphs.

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