'Declaration
Public Function Apply( _ Optional ByVal sorting As Boolean, _ Optional ByVal sortFrozenRows As Nullable(Of Boolean), _ Optional ByVal sortFrozenTraillingRows As Nullable(Of Boolean) _ ) As ActionResult(Of Integer())
'Usage
Dim instance As Sort Dim sorting As Boolean Dim sortFrozenRows As Nullable(Of Boolean) Dim sortFrozenTraillingRows As Nullable(Of Boolean) Dim value As ActionResult(Of Integer()) value = instance.Apply(sorting, sortFrozenRows, sortFrozenTraillingRows)
public ActionResult<int[]> Apply( bool sorting, Nullable<bool> sortFrozenRows, Nullable<bool> sortFrozenTraillingRows )
Parameters
- sorting
- if set to
true
apply the sort logic in current range. - sortFrozenRows
- if set to
true
or not set, frozen rows will be sorted . - sortFrozenTraillingRows
Return Value
An array represents the order of sorted rows.