API Reference
LegacyXlsSortSettings
Represents worksheet sort dialog metadata parsed from a legacy BIFF Sort record.
Inheritance
- Object
- LegacyXlsSortSettings
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property LegacyXlsWorksheet.SortSettings
Constructors
public LegacyXlsSortSettings(Boolean sortLeftToRight, Boolean key1Descending, Boolean key2Descending, Boolean key3Descending, Boolean caseSensitive, Int32 customListIndex, Boolean usePhoneticInformation, String key1, String key2, String key3) #Creates sort settings parsed from a BIFF Sort record.
Parameters
- sortLeftToRight System.Boolean
- Whether the sort operates from left to right instead of top to bottom.
- key1Descending System.Boolean
- Whether the first sort key is descending.
- key2Descending System.Boolean
- Whether the second sort key is descending.
- key3Descending System.Boolean
- Whether the third sort key is descending.
- caseSensitive System.Boolean
- Whether sorting is case-sensitive.
- customListIndex System.Int32
- Zero-based custom-list sort order index.
- usePhoneticInformation System.Boolean
- Whether phonetic information participates in sorting.
- key1 System.String
- First sort key label, when present.
- key2 System.String
- Second sort key label, when present.
- key3 System.String
- Third sort key label, when present.
Inherited Methods
public override Boolean Equals(Object obj) #BooleanParameters
- obj Object
Properties
public Boolean SortLeftToRight { get; } #Gets whether the sort operates from left to right instead of top to bottom.
public Boolean Key1Descending { get; } #Gets whether the first sort key is descending.
public Boolean Key2Descending { get; } #Gets whether the second sort key is descending.
public Boolean Key3Descending { get; } #Gets whether the third sort key is descending.
public Boolean CaseSensitive { get; } #Gets whether sorting is case-sensitive.
public Int32 CustomListIndex { get; } #Gets the zero-based custom-list sort order index.
public Boolean UsePhoneticInformation { get; } #Gets whether phonetic information participates in sorting.
public String Key1 { get; } #Gets the first sort key label, when present.
public String Key2 { get; } #Gets the second sort key label, when present.
public String Key3 { get; } #Gets the third sort key label, when present.