KeyEventArgs.IsToggled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the key referenced by the event is in the toggled state.
public:
property bool IsToggled { bool get(); };
public bool IsToggled { get; }
member this.IsToggled : bool
Public ReadOnly Property IsToggled As Boolean
Property Value
true
if the key is toggled; otherwise, false
. There is no default value.
Examples
The following example checks whether the key associated with an instance of KeyEventArgs is toggled by obtaining the state of the IsToggled property.
// e is a instance of KeyEventArgs.
// btnIsToggled is a Button.
if (e.IsToggled)
{
btnIsToggle.Background = Brushes.Red;
}
' e is a instance of KeyEventArgs.
' btnIsToggled is a Button.
If e.IsToggled Then
btnIsToggle.Background = Brushes.Red
Remarks
The Keyboard class also provides information about the state of the keys on the keyboard. For instance, the IsKeyToggled method returns whether a specified key is toggled.