public FrameView OrderBy(
string columnName,
SortOrder order
)
Public Function OrderBy (
columnName As String,
order As SortOrder
) As FrameView
public:
FrameView^ OrderBy(
String^ columnName,
SortOrder order
)
member OrderBy :
columnName : string *
order : SortOrder -> FrameView
values are supported and are ordered before all other values.
The type of data in the column must implement IComparable.
ArgumentNullException | columnName is . |
IndexOutOfRangeException | columnName is not the name of a column in the view. |
InvalidCastException | The type of data in the column is not IComparable. |