KeyEventArgs::IsToggled Property

 

Gets a value that indicates whether the key referenced by the event is in the toggled state.

Namespace:   System.Windows.Input
Assembly:  PresentationCore (in PresentationCore.dll)

public:
property bool IsToggled {
	bool get();
}

Property Value

Type: System::Boolean

true if the key is toggled; otherwise, false. There is no default value.

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.

The following example checks whether the key associated with an instance of KeyEventArgs is toggled by obtaining the state of the IsToggled property.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Return to top
Show: