Version

SetValue(Int32,Boolean,Boolean) Method

Sets the Value property of the RadialMenuNumericToolBase and optionally fires the UltraRadialMenu.ToolValueChanged event and synchonizes the parent tools.
Syntax
'Declaration
 
Public Sub SetValue( _
   ByVal newValue As Integer, _
   ByVal fireEvents As Boolean, _
   ByVal synchParentToolIfNeeded As Boolean _
) 
public void SetValue( 
   int newValue,
   bool fireEvents,
   bool synchParentToolIfNeeded
)

Parameters

newValue
The new value value.
fireEvents
True to fire the ValueChanged event; otherwise false.
synchParentToolIfNeeded
True to have the tool synchronize it's parent tools, if appropriate.
Remarks
The 'synchParentToolIfNeeded' parameter allows you to specify whether the tool should synchronize the properties of it's parent tools or not. For example, clicking on a RadialMenuNumericGaugeTool to set it's value will automatically update the parent tool's Value property (if the parent is a RadialMenuNumericToolBase.) Specifying true for 'synchParentToolIfNeeded' will act the same as if the user clicked the tool. Specifying false will change the Value of the tool without affecting the parent or ancestor tools.
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