Table of Contents

Interface IRangeValuePattern

Namespace
HP.LFT.SDK.UIAPro
Assembly
HP.LFT.SDK.dll

The methods and properties used to interact with a control that can be set to a value within a range.

public interface IRangeValuePattern

Properties

IsReadOnly

Indicates whether the value of UIAPro object is read-only.

bool IsReadOnly { get; }

Property Value

bool

LargeChange

The control-specific large-change value which is added to or subtracted from the Value of the current UIAPro object.

double LargeChange { get; }

Property Value

double

Maximum

The maximum value supported by the UIAPro object.

double Maximum { get; }

Property Value

double

Minimum

The minimum value supported by the UIAPro object.

double Minimum { get; }

Property Value

double

SmallChange

The small-change value, unique to the UIAPro object, which is added to or subtracted from the Value of the current UIAPro object.

double SmallChange { get; }

Property Value

double

Value

The current value of the UIAPro object.

double Value { get; set; }

Property Value

double