Show / Hide Table of Contents

Class NSArchiveOrderByInfo

Carries information about an ordering criterion for an archive.

Syntax

Constructors

NSArchiveOrderByInfo()

Initializes a new instance of the NSArchiveOrderByInfo class.

Introduced or updated in version: 7

Declaration
NSArchiveOrderByInfo

Methods

GetDirection()

Introduced or updated in version: 7

Declaration
Integer GetDirection()
Returns
Type Description
Integer

Direction to order. See OrderBySortType

Examples
NSArchiveOrderByInfo thing;
Integer direction = thing.GetDirection();

GetName()

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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)

Introduced or updated in version: 7

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);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top