Class NSArchiveOrderByInfo

Carries information about an ordering criterion for an archive.

Constructors

NSArchiveOrderByInfo()

Initializes a new instance of the NSArchiveOrderByInfo class.

Declaration

NSArchiveOrderByInfo

Methods

GetDirection()

Declaration

Integer GetDirection()

Examples

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

Returns

Type Description
Integer Direction to order. See <xref href="CRMScript.NetServer.OrderBySortType" data-throw-if-not-resolved="false"></xref>

GetName()

Declaration

String GetName()

Examples

NSArchiveOrderByInfo thing;
String name = thing.GetName();

Returns

Type Description
String Programmatic name of the column to order by, semantically the same as the NSArchiveColumnInfo.Name.

SetDirection(Integer)

Declaration

Void SetDirection(Integer direction)

Examples

NSArchiveOrderByInfo thing;
Integer direction;
thing.SetDirection(direction);

Parameters

Type Name Description
Integer direction Direction to order. See <xref href="CRMScript.NetServer.OrderBySortType" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSArchiveOrderByInfo thing;
String name;
thing.SetName(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