TreeViewExtensionsRestoreTreeState Method
Namespace: DevCase.Extensions.TreeViewExtensionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
public static void RestoreTreeState(
this TreeView sender,
Dictionary<int, bool> saveState
)
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
Public Shared Sub RestoreTreeState (
sender As TreeView,
saveState As Dictionary(Of Integer, Boolean)
)
Dim sender As TreeView
Dim saveState As Dictionary(Of Integer, Boolean)
sender.RestoreTreeState(saveState)
public:
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
static void RestoreTreeState(
TreeView^ sender,
Dictionary<int, bool>^ saveState
)
[<ExtensionAttribute>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
static member RestoreTreeState :
sender : TreeView *
saveState : Dictionary<int, bool> -> unit
No code example is currently available or this language may not be supported.
- sender TreeView
-
The source TreeView.
- saveState DictionaryInt32, Boolean
-
A DictionaryTKey, TValue containing the hash code of each node and its expansion state.
In Visual Basic and C#, you can call this method as an instance method on any object of type
TreeView. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This is a code example.
No code example is currently available or this language may not be supported.
Dim saveState As Dictionary(Of Integer, Boolean)
Private Sub Button_SaveTreeState(sender As Object, e As EventArgs) Handles Button_SaveTreeState.Click
saveState = Me.TreeView1.SaveTreeState()
End Sub
Private Sub Button_RestoreTreeState(sender As Object, e As EventArgs) Handles Button_RestoreTreeState.Click
Me.TreeView1.RestoreTreeState(saveState)
End Sub
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.