Interface representing a header cell in the grid. It is essentially the blueprint to a header cell object.
Contains definitions of properties, relevant to the header
Inheritance
System.Object
IgbHeaderType
Assembly: IgniteUI.Blazor.dll
public class IgbHeaderType : BaseRendererElement, JsonSerializable
Constructors
Declaration
Properties
Column
The column that the header cell represents.
Declaration
public IgbColumn Column { get; set; }
Property Value
Indicates whether the cell can be selected
Declaration
public bool Selectable { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Indicates whether the cell is currently selected
Declaration
public bool Selected { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Represents the sorting direction of the column (ascending, descending or none).
Declaration
public SortingDirection SortDirection { get; set; }
Property Value
Indicates whether the column is currently sorted.
Declaration
public bool Sorted { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Indicates whether the column header is a title cell.
Declaration
public bool Title { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Declaration
public void SetNativeElement(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Declaration
public Task SetNativeElementAsync(object element)
Parameters
| Type |
Name |
Description |
| System.Object |
element |
|
Returns
| Type |
Description |
| System.Threading.Tasks.Task |
|
Implements