Version

Value Property (RadialMenuNumericToolBase)

Gets or sets the current value of the tool.
Syntax
'Declaration
 
Public Property Value As Integer
public int Value {get; set;}
Remarks

The RadialMenuNumericGaugeTool displays the current value using a needle which points to the value on the gauge. The color of the needle can be set using the ToolSettings.NumericGaugeToolValueNeedleColor property.

The RadialMenuNumericTool displays the current value as a string, positioned relative to the tool's image. The relative position of the value label can be adjusted using the ToolSettings.NumericToolValueLabelVisible. The appearance of the value label is determined by the NumericToolValueAppearance. The value label can be hidden by setting ToolSettings.NumericToolValueLabelVisible to DefaultableBoolean.False.

As with all properties on the ToolSettings class, the ToolSettings of the individual tool will override the ToolSettings on the UltraRadialMenu component.

If the parent of a RadialMenuNumericToolBase is a RadialMenuNumericToolBase, then the child RadialMenuNumericToolBase will attempt to set the parent RadialMenuNumericToolBase's Value to it's Value any time the Value property of the child RadialMenuNumericToolBase is changed. To set the Value of a RadialMenuNumericToolBase without affecting the parent tool, use the SetValue(Int32,Boolean,Boolean) method and specify false for 'synchParentToolIfNeeded'.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also