[]
Initializes a new instance of the OutlineNode class.
public OutlineNode()
Public Sub New()
Initializes a new instance of the OutlineNode class.
public OutlineNode(string title)
Public Sub New(title As String)
Type | Name | Description |
---|---|---|
string | title | The title of OutlineNode. |
Initializes a new instance of the OutlineNode class.
public OutlineNode(string title, DestinationBase dest, bool expanded = false)
Public Sub New(title As String, dest As DestinationBase, Optional expanded As Boolean = False)
Type | Name | Description |
---|---|---|
string | title | The title of OutlineNode. |
DestinationBase | dest | The DestinationBase to be activated when this OutlineNode clicked. |
bool | expanded | The initial expanded state of OutlineNode. |
Initializes a new instance of the OutlineNode class.
public OutlineNode(string title, ActionBase action, bool expanded = false)
Public Sub New(title As String, action As ActionBase, Optional expanded As Boolean = False)
Type | Name | Description |
---|---|---|
string | title | The title of OutlineNode. |
ActionBase | action | The ActionBase to be activated when this OutlineNode clicked. |
bool | expanded | The initial expanded state of OutlineNode. |