Table of Contents

Class TableState

Namespace
MudBlazor
Assembly
MudBlazor.dll

The state of a MudTable<T> when requesting data via ServerData.

public class TableState
Inheritance
TableState
Inherited Members
Extension Methods

Constructors

TableState()

public TableState()

Properties

Page

The requested index of the page to display.

public int Page { get; set; }

Property Value

int

Remarks

The index of the first page is 0.

PageSize

The number of items requested.

public int PageSize { get; set; }

Property Value

int

SortDirection

The direction to sort results.

public SortDirection SortDirection { get; set; }

Property Value

SortDirection

Remarks

Defaults to None.

SortLabel

The optional column to sort by.

public string? SortLabel { get; set; }

Property Value

string