Specifies the sort order of the indexed column. If the value of this property is set to 1 (ascending) or 2 (descending), then the column forms part of the index key (that is, the column will be present in the ON clause of the CREATE INDEX statement). If the value is 0 (none), then the column is a non-key, included column (that is, the column will be present in the INCLUDE clause, or equivalent, of the CREATE INDEX statement).

Namespace:  FileNet.Api.Admin
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Property SortOrder As SortOrder
C#
SortOrder SortOrder { get; set; }
Visual C++
property SortOrder SortOrder {
	SortOrder get ();
	void set (SortOrder value);
}
JavaScript
function get_sortOrder();
function set_sortOrder(value);

ToggleRemarks

ToggleSee Also