NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Splitter KeyUp Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the KeyUp event.

[Visual Basic]
Private Sub SplitterName_KeyUp( _
   ByVal sender As Object, _
   ByVal e As KeyEventArgs _
)
[C#]
private void SplitterName_KeyUp(
   object sender,
   KeyEventArgs e
);
[C++]
private: void SplitterName_KeyUp(
   Object* sender,
   KeyEventArgs* e
);
[JScript]
private SplitterName_KeyUp(
   sender : Object,
   e : KeyEventArgs
);

Parameters

sender
The source of the event.
e
A KeyEventArgs that contains the event data. The following KeyEventArgs properties provide information specific to this event.
Property Description
Alt
Gets a value indicating whether the ALT key was pressed.
Control
Gets a value indicating whether the CTRL key was pressed.
Handled
Gets or sets a value indicating whether the event was handled.
KeyCode
Gets the keyboard code for a System.WinForms.Control.KeyDown or System.WinForms.Control.KeyUp event.
KeyData
Gets the key data for a System.WinForms.Control.KeyDown or System.WinForms.Control.KeyUp event.
Modifiers
Gets the modifier flags for a System.WinForms.Control.KeyDown or System.WinForms.Control.KeyUp event. This indicates which modifier keys (CTRL, SHIFT, and/or ALT) were pressed.
Shift
Gets a value indicating whether the SHIFT key was pressed.

See Also

Splitter Class | Splitter MembersTopic | System.WinForms Namespace