Property RangeStep
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
RangeStep
Gets or sets the step size.
public double RangeStep { get; set; }
Property Value
- double
The step size.
Examples
UIBlockDefinition numericBlock = new UIBlockDefinition();
numericBlock.Type = UIBlockType.Numeric;
numericBlock.InitialValue = "10;true;Discreet 2";
numericBlock.DestVar = "num";
numericBlock.WantsOnChange = true;
numericBlock.Row = 0;
numericBlock.Column = 1;
numericBlock.HorizontalAlignment = "Center";
numericBlock.VerticalAlignment = "Top";
numericBlock.RangeHigh = 300;
numericBlock.RangeLow = 5;
numericBlock.RangeStep = 5;
numericBlock.Decimals = 6;
numericBlock.Extra = "Discreet 1;Discreet 2;Discreet 3";
uib.AppendBlock(numericBlock);
Remarks
Applicable only in case Type is set to Numeric.