Version

LabelClickAction Enumeration

Determines what happens when the user clicks on a Field's label
Syntax
'Declaration
 
Public Enum LabelClickAction 
   Inherits System.Enum
public enum LabelClickAction : System.Enum 
Members
MemberDescription
DefaultUse the default setting
NothingNothing happens
SelectFieldThe field is selected
SortByMultipleFieldsThe records are sorted by this field, the old sort criteria is only reset if the 'Ctrl' key is not depressed.
SortByMultipleFieldsTriStateThe records are sorted by this field, the old sort criteria is only reset if the 'Ctrl' key is not depressed. Sequential clicks will cycle thru the ascending, descending and unsorted states.
SortByOneFieldOnlyThe records are sorted exclusively by this field
SortByOneFieldOnlyTriStateThe records are sorted exclusively by this field. Sequential clicks will cycle thru the ascending, descending and unsorted states.
Remarks

Note: when using the SortByOneFieldOnlyTriState or SortByMultipleFieldsTriState settings, if the 'Ctrl' key is pressed during a click, or the Field.IsGroupBy property is true, then the Field will not cycle thru the unsorted state. Instead it will cycle thru the ascending and descending states only.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also