'DeclarationPublic Function Apply( _ Optional ByVal sorting As Boolean _ ) As ActionResult(Of Integer())
'UsageDim instance As Sort Dim sorting As Boolean Dim value As ActionResult(Of Integer()) value = instance.Apply(sorting)
public ActionResult<int[]> Apply( bool sorting )
Parameters
- sorting
- if set to
trueapply the sort logic in current range.
Return Value
An array represents the order of sorted rows.