TableSort resource type

Namespace: microsoft.graph

Manages sorting operations on Table objects.

Methods

Method Return Type Description
Get TableSort WorkbookTableSort Read properties and relationships of tableSort object.
Apply None Perform a sort operation.
Clear None Clears the sorting that is currently on the table. While this doesn't modify the table's ordering, it clears the state of the header buttons.
Reapply None Reapplies the current sorting parameters to the table.

Properties

Property Type Description
fields WorkbookSortField collection Represents the current conditions used to last sort the table. Read-only.
matchCase boolean Represents whether the casing impacted the last sort of the table. Read-only.
method string Represents Chinese character ordering method last used to sort the table. The possible values are: PinYin, StrokeCount. Read-only.

JSON representation

Here is a JSON representation of the resource.

{
  "matchCase": true,
  "method": "string",
  "fields": [{ "@odata.type": "microsoft.graph.workbookSortField" }]
}