Specifies the mode of the check boxes in the RadTreeView control.
Definition
Namespace:Telerik.Maui.Controls.TreeView
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum TreeViewCheckBoxMode
Fields
Specifies that the check boxes are checked and unchecked independently. The checked state of the parent item is not propagated to its children.
C#
Independent = 1
Specifies that no check boxes are displayed in the control.
C#
None = 0
Specifies that the check boxes are checked and unchecked recursively. The checked state of the parent item is propagated to its children.
C#
Recursive = 2