Class IgbResponsivePhase
Describes one phase of a responsive state to apply to the grid.
Inheritance
System.Object
IgbResponsivePhase
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbResponsivePhase : BaseRendererElement, JsonSerializable
Constructors
IgbResponsivePhase()
Declaration
public IgbResponsivePhase()
Properties
DelayMilliseconds
The amount of time to delay the responsive phase from starting, in milliseconds
Declaration
public int DelayMilliseconds { get; set; }
Property Value
| Type |
Description |
| System.Int32 |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
AddColumnExchanger(IgbColumnExchanger)
Declaration
public IgbResponsivePhase AddColumnExchanger(IgbColumnExchanger exchanger)
Parameters
Returns
AddColumnExchangerAsync(IgbColumnExchanger)
Adds a column exchanger the the phase.
Declaration
public Task<IgbResponsivePhase> AddColumnExchangerAsync(IgbColumnExchanger exchanger)
Parameters
Returns
AddColumnPropertySetter(IgbColumnPropertySetter)
Declaration
public IgbResponsivePhase AddColumnPropertySetter(IgbColumnPropertySetter setter)
Parameters
Returns
AddColumnPropertySetterAsync(IgbColumnPropertySetter)
Adds a column property setter to the phase.
Declaration
public Task<IgbResponsivePhase> AddColumnPropertySetterAsync(IgbColumnPropertySetter setter)
Parameters
Returns
ColumnExchanger()
Declaration
public IgbResponsivePhase ColumnExchanger()
Returns
ColumnExchangerAsync()
Adds a column exchanger to the phase and returns it.
Declaration
public Task<IgbResponsivePhase> ColumnExchangerAsync()
Returns
ColumnPropertySetter()
Declaration
public IgbColumnPropertySetter ColumnPropertySetter()
Returns
ColumnPropertySetterAsync()
Adds a column property setter to the phase, and returns it.
Declaration
public Task<IgbColumnPropertySetter> ColumnPropertySetterAsync()
Returns
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
Implements