TreeView.Sorted Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.