Class IgbSlider
A slider component used to select numeric value within a range.
Inheritance
System.Object
IgbSlider
Implements
System.IDisposable
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbSlider : IgbSliderBase, RefSink, JsonSerializable, IDisposable
Constructors
IgbSlider()
Declaration
Properties
AriaLabel
Declaration
public string AriaLabel { get; set; }
Property Value
Type |
Description |
System.String |
|
Change
Declaration
public EventCallback<IgbNumberEventArgs> Change { get; set; }
Property Value
ChangeScript
Declaration
public string ChangeScript { get; set; }
Property Value
Type |
Description |
System.String |
|
DirectRenderElementName
Declaration
protected override string DirectRenderElementName { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Declaration
public EventCallback<IgbNumberEventArgs> Input { get; set; }
Property Value
Declaration
public string InputScript { get; set; }
Property Value
Type |
Description |
System.String |
|
SupportsVisualChildren
Declaration
protected override bool SupportsVisualChildren { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
UseDirectRender
Declaration
protected override bool UseDirectRender { get; }
Property Value
Type |
Description |
System.Boolean |
|
Overrides
Value
Declaration
public double Value { get; set; }
Property Value
Type |
Description |
System.Double |
|
Methods
EnsureModulesLoaded()
Declaration
protected override void EnsureModulesLoaded()
Overrides
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
ResolveDisplay()
Declaration
protected override string ResolveDisplay()
Returns
Type |
Description |
System.String |
|
Overrides
StepDown(Double)
Declaration
public void StepDown(double stepDecrement)
Parameters
Type |
Name |
Description |
System.Double |
stepDecrement |
|
StepDownAsync(Double)
Decrements the value of the slider by stepDecrement * step
, where stepDecrement
defaults to 1.
stepDecrement Optional step decrement. If no parameter is passed, it defaults to 1.
Declaration
public Task StepDownAsync(double stepDecrement)
Parameters
Type |
Name |
Description |
System.Double |
stepDecrement |
Optional step decrement. If no parameter is passed, it defaults to 1.
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
StepUp(Double)
Declaration
public void StepUp(double stepIncrement)
Parameters
Type |
Name |
Description |
System.Double |
stepIncrement |
|
StepUpAsync(Double)
Increments the value of the slider by stepIncrement * step
, where stepIncrement
defaults to 1.
stepIncrement Optional step increment. If no parameter is passed, it defaults to 1.
Declaration
public Task StepUpAsync(double stepIncrement)
Parameters
Type |
Name |
Description |
System.Double |
stepIncrement |
Optional step increment. If no parameter is passed, it defaults to 1.
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Implements
System.IDisposable