Description
Sets or returns anint
representing the indent level for this list entry.
C#
public int LevelNum{ get ; set ; } |
vb.net
Public Property LevelNum() As Integer |
Examples
C#
//--- Return LevelNum int levelNum = entry.LevelNum; //--- Set LevelNum to 4th level entry.LevelNum = 3; |
vb.net
'--- Return LevelNum Dim levelNum As Integer = entry.LevelNum '--- Set LevelNum to 4th level entry.LevelNum = 3 |