Class RangeInput
Defines a
Implements
IElementWrapper<RemoteWebElement>
Inherited Members
Namespace: Legerity.Web.Elements.Core
Assembly: Legerity.Web.dll
Syntax
public class RangeInput : TextInput, IElementWrapper<RemoteWebElement>
Constructors
| Improve this Doc View SourceRangeInput(IWebElement)
Initializes a new instance of the RangeInput class.
Declaration
public RangeInput(IWebElement element)
Parameters
Type | Name | Description |
---|---|---|
IWebElement | element | The |
RangeInput(RemoteWebElement)
Initializes a new instance of the RangeInput class.
Declaration
public RangeInput(RemoteWebElement element)
Parameters
Type | Name | Description |
---|---|---|
RemoteWebElement | element | The |
Properties
| Improve this Doc View SourceMaximum
Gets the maximum value of the range input.
Declaration
public virtual double Maximum { get; }
Property Value
Type | Description |
---|---|
System.Double |
Minimum
Gets the minimum value of the range input.
Declaration
public virtual double Minimum { get; }
Property Value
Type | Description |
---|---|
System.Double |
Value
Gets the value of the range input.
Declaration
public virtual double Value { get; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
| Improve this Doc View SourceDecrement()
Decreases the range input value.
Declaration
public virtual void Decrement()
Increment()
Increases the range input value.
Declaration
public virtual void Increment()
SetValue(Double)
Sets the value of the range input.
Declaration
public virtual void SetValue(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
Operators
| Improve this Doc View SourceImplicit(RemoteWebElement to RangeInput)
Allows conversion of a
Declaration
public static implicit operator RangeInput(RemoteWebElement element)
Parameters
Type | Name | Description |
---|---|---|
RemoteWebElement | element | The |
Returns
Type | Description |
---|---|
RangeInput | The RangeInput. |