Class NSArchiveOrderByInfo
Carries information about an ordering criterion for an archive.
Syntax
Constructors
NSArchiveOrderByInfo()
Initializes a new instance of the NSArchiveOrderByInfo class.
Declaration
NSArchiveOrderByInfo
Methods
GetDirection()
Carries information about an ordering criterion for an archive.
Declaration
Integer GetDirection()
Returns
Type | Description |
---|---|
Integer | Direction to order. See OrderBySortType |
Examples
NSArchiveOrderByInfo thing;
Integer direction = thing.GetDirection();
GetName()
Carries information about an ordering criterion for an archive.
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | Programmatic name of the column to order by, semantically the same as the NSArchiveColumnInfo.Name. |
Examples
NSArchiveOrderByInfo thing;
String name = thing.GetName();
SetDirection(Integer)
Carries information about an ordering criterion for an archive.
Declaration
Void SetDirection(Integer direction)
Parameters
Type | Name | Description |
---|---|---|
Integer | direction | Direction to order. See OrderBySortType. |
Returns
Type | Description |
---|---|
Void |
Examples
NSArchiveOrderByInfo thing;
Integer direction;
thing.SetDirection(direction);
SetName(String)
Carries information about an ordering criterion for an archive.
Declaration
Void SetName(String name)
Parameters
Type | Name | Description |
---|---|---|
String | name | Programmatic name of the column to order by, semantically the same as the NSArchiveColumnInfo.Name. |
Returns
Type | Description |
---|---|
Void |
Examples
NSArchiveOrderByInfo thing;
String name;
thing.SetName(name);