Property IsSorted
- Namespace
 - Skyline.DataMiner.Automation
 
- Assembly
 - SLManagedAutomation.dll
 
IsSorted
Gets or sets a value indicating whether items in the control are sorted naturally.
public bool IsSorted { get; set; }
Property Value
- bool
 trueif the items are sorted naturally; otherwise,false.
Examples
UIBlockDefinition blockItem = new UIBlockDefinition();
blockItem.Type = UIBlockType.DropDown;
blockItem.IsSorted = true;
uibDialogBox1.AppendBlock(blockItem);
Remarks
Applicable only when Type is set to CheckBoxList or DropDown.
Default: false
Available from DataMiner 9.5.6 onwards.