Class IgbResponsiveState
Describes a state that the grid can enter based on a set of responsive conditions.
Inheritance
System.Object
IgbResponsiveState
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbResponsiveState : BaseRendererElement, JsonSerializable
Constructors
IgbResponsiveState()
Declaration
public IgbResponsiveState()
Properties
IsManualState
Configures this responsive state to only be manually actived
Declaration
public bool IsManualState { get; set; }
Property Value
| Type |
Description |
| System.Boolean |
|
MaximumWidth
Gets or sets the maximum width for which this state is active.
Declaration
public double MaximumWidth { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
MinimumWidth
Gets or sets the minimum width for which this state is active.
Declaration
public double MinimumWidth { get; set; }
Property Value
| Type |
Description |
| System.Double |
|
StateEntered
Declaration
public EventCallback<IgbResponsiveStateEnteredEventArgs> StateEntered { get; set; }
Property Value
StateEnteredScript
Declaration
public string StateEnteredScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
StateEntering
Declaration
public EventCallback<IgbResponsiveStateEnteringEventArgs> StateEntering { get; set; }
Property Value
StateEnteringScript
Declaration
public string StateEnteringScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
StateExited
Declaration
public EventCallback<IgbResponsiveStateExitedEventArgs> StateExited { get; set; }
Property Value
StateExitedScript
Declaration
public string StateExitedScript { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Type
Declaration
public override string Type { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Methods
AddResponsivePhase(IgbResponsivePhase)
Declaration
public IgbResponsiveState AddResponsivePhase(IgbResponsivePhase phase)
Parameters
Returns
AddResponsivePhaseAsync(IgbResponsivePhase)
Adds a responsive phase to the state.
Declaration
public Task<IgbResponsiveState> AddResponsivePhaseAsync(IgbResponsivePhase phase)
Parameters
Returns
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
| Type |
Name |
Description |
| System.String |
name |
|
Returns
| Type |
Description |
| System.Object |
|
Overrides
ResponsivePhase()
Declaration
public IgbResponsivePhase ResponsivePhase()
Returns
ResponsivePhaseAsync()
Adds a responsive phase to the state and returns it.
Declaration
public Task<IgbResponsivePhase> ResponsivePhaseAsync()
Returns
Implements