Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Sets or returns an int 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

Examples

 
  • No labels