Gets or sets the multi-select modifier key.
Syntax
Visual Basic (Declaration) | |
---|
Public Property MultiSelectModifierKey As ModifierKeys |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As AnnAutomationManager
Dim value As ModifierKeys
instance.MultiSelectModifierKey = value
value = instance.MultiSelectModifierKey
|
XAML Syntax | |
---|
For XAML information, see the System.Windows.Input.ModifierKeys type. |
XAML Syntax | |
---|
For XAML information, see the System.Windows.Input.ModifierKeys type. |
Return Value
The multi-select modifier key.
Example
This example disables the multi-select modifier key
Visual Basic | Copy Code |
---|
Private Sub AnnAutomationManager_MultiSelectModifierKey(ByVal manager As AnnAutomationManager)
manager.MultiSelectModifierKey = ModifierKeys.None
End Sub |
C# | Copy Code |
---|
private void AnnAutomationManager_MultiSelectModifierKey(AnnAutomationManager manager) { manager.MultiSelectModifierKey = ModifierKeys.None; } |
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, and Windows Server 2003 family
See Also