FieldOrderCollection.AppendFromParallelArrays method
Appends an ordered list of sorting/grouping criteria to the existing collection. The sort order for each column added is provided in a second parallel ordered list.
Namespace: Microsoft.SharePoint.JSGrid
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Sub AppendFromParallelArrays ( _
colNames As IEnumerable(Of String), _
isDescending As IEnumerable(Of Boolean) _
)
'Usage
Dim instance As FieldOrderCollection
Dim colNames As IEnumerable(Of String)
Dim isDescending As IEnumerable(Of Boolean)
instance.AppendFromParallelArrays(colNames, _
isDescending)
public void AppendFromParallelArrays(
IEnumerable<string> colNames,
IEnumerable<bool> isDescending
)
Parameters
colNames
Type: System.Collections.Generic.IEnumerable<String>Represents the collection of column names.
isDescending
Type: System.Collections.Generic.IEnumerable<Boolean>Indicates whether the collection is descending or not.