ServerOrderingOverride - DataList_
Determines whether the control will use its Server DDO's Ordering or its own
Type: Function
Return Data Type: Boolean
Syntax
Function ServerOrderingOverride Returns Boolean
Call Example
Get ServerOrderingOverride to BooleanVariable
Description
Returns True if Ordering is determined by the control's Server DDO. This only happens if pbUseServerOrdering is True, the control is attached to a DDO and the DDO has an explicit Ordering set.
Returns False if Ordering is provided by the control itself.
Sample
This sample shows how to check whether the control uses the index specified via the Server DDO's Ordering property or its own Ordering property.
Procedure SampleMethod
Boolean bServerOrderingOverride
Get ServerOrderingOverride to bServerOrderingOverride
If (bServerOrderingOverride) Begin
// do something
End
Else Begin
// do something
End
End_Procedure