Returns an int representing the indent of the paragraph in twips.

 public int GetIndent(IndentLocation location)
Public Function GetIndent(ByVal location As IndentLocation) As Integer

A ParagraphFormatting.IndentLocation representing the indent location for which to get the indent.

An int that represents the indent of the paragraph in twips.


          int indent = oParagraphFormatting.GetIndent(
               ParagraphFormatting.IndentLocation.FirstLine);
        

          Dim indent As Integer = oParagraphFormatting.GetIndent( _
               ParagraphFormatting.IndentLocation.FirstLine)