FieldOrder Constructor
Initializes a new instance of the FieldOrder class.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub New ( _
fieldKey As String, _
isDescending As Boolean _
)
'Usage
Dim fieldKey As String
Dim isDescending As Boolean
Dim instance As New FieldOrder(fieldKey, _
isDescending)
public FieldOrder(
string fieldKey,
bool isDescending
)
Parameters
fieldKey
Type: System.StringThe value of the ColumnName property that will be sorted.
isDescending
Type: System.Booleantrue if the column should be sorted in descending order; otherwise false.