TreeView.Sorted Property

Definition

Gets or sets a value indicating whether the tree nodes in the tree view are sorted.

public:
 property bool Sorted { bool get(); void set(bool value); };
public bool Sorted { get; set; }
[System.ComponentModel.Browsable(false)]
public bool Sorted { get; set; }
member this.Sorted : bool with get, set
[<System.ComponentModel.Browsable(false)>]
member this.Sorted : bool with get, set
Public Property Sorted As Boolean

Property Value

true if the tree nodes in the tree view are sorted; otherwise, false. The default is false.

Attributes

Remarks

When Sorted is set to true, the TreeNode objects are sorted in alphabetical order by their Text property values. You should always use BeginUpdate and EndUpdate to maintain performance when you add a large quantity of items to a sorted TreeView. When the text of an existing node is changed, you must call Sort to resort the items.

Note

The default sorter uses the Compare method based on the CurrentCulture specified by the application. This means that TreeNode objects with equal value are kept in the order in which they were added to the TreeView control.

Applies to