Sets the range of a slider.
.NET Syntax
Visual Basic (Declaration) | |
---|
Function SetRange( _
ByVal Min As Integer, _
ByVal Max As Integer _
) As Boolean |
Visual Basic (Usage) | |
---|
Dim instance As IPropertyManagerPageSlider
Dim Min As Integer
Dim Max As Integer
Dim value As Boolean
value = instance.SetRange(Min, Max)
|
C# | |
---|
bool SetRange(
int Min,
int Max
) |
C++/CLI | |
---|
bool SetRange(
& int Min,
& int Max
) |
Parameters
- Min
- Minimum range of slider
- Max
Maximum range of slider
Return Value
True if range is set, false if not
Example
Remarks
See Also