Description
Sets or returns anint
that represents the indent for the first line of the entry in twips. One twip = (1/20 pt) or (1/1440 in).
C#
public int NumberIndent{ get ; set ; } |
vb.net
Public Property NumberIndent() As Integer |
Examples
C#
//--- Return NumberIndent int numberIndent = level.NumberIndent; //--- Set NumberIndent to 1/2 inch level.NumberIndent = 720; |
vb.net
'--- Return NumberIndent Dim numberIndent As Integer = level.NumberIndent '--- Set NumberIndent to 1/2 inch level.NumberIndent = 720 |