Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

The sort method allows a user to sort an area by a particular column in the area. This method can sort numeric, alphabetic, and alphanumeric data. The user can also specify if the area contains headers, and whether to sort by ascending or descending.

Signature
C#
C#
 public static void IFunction
{
    FunctionValue Calculate(IList<FunctionValue> args, Cell currentCell);
}

 

Sort(Integer columnIndex, bool isAscending, bool hasHeader)
Signature
vb.net
vb.net
Public Static void Sub Sort(ByVal columnIndex As integer, ByVal isAscending As bool, ByVal hasHeader As bool)

Parameters

Param
0columnIndex

An integer representing the column you would like to sort the area by.

...