SortOrder

Description

Sets or returns the numeric order of precedence for the field, when there is more than one sort key.

Syntax

VBScript

queryfielddef.SortOrder 
queryfielddef.SortOrder NewValue 

Perl

$queryfielddef->GetSortOrder();
$queryfielddef->SetSortOrder(NewValue); 
Identifier
Description
queryfielddef
A QueryFieldDef object.
NewValue
A Long whose value represents the numeric order of precedence when there is more than one sort key.
Return value
Returns a Long containing the value that represents the numeric order of precedence of the sort.

Examples

VBScript

idfield.SetSortOrder 1 

Perl

$idfield->SetSortOrder(1);