This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!
Splitter SplitterMoving Event
[To be supplied.]
The following declaration shows the syntax for a method that handles the SplitterMoving event.
[Visual Basic]
Private Sub SplitterName_SplitterMoving( _
ByVal sender As Object, _
ByVal e As SplitterEventArgs _
)
[C#]
private void SplitterName_SplitterMoving(
object sender,
SplitterEventArgs e
);
[C++]
private: void SplitterName_SplitterMoving(
Object* sender,
SplitterEventArgs* e
);
[JScript]
private SplitterName_SplitterMoving(
sender : Object,
e : SplitterEventArgs
);
Parameters
- sender
- The source of the event.
- e
- A SplitterEventArgs that contains the event data. The following SplitterEventArgs properties provide information specific to this event.
Property |
Description |
- SplitX
|
- Gets the x-coordinate of the upper-left corner of the Splitter (in client coordinates).
|
- SplitY
|
- Gets the y-coordinate of the upper-left corner of the Splitter (in client coordinates).
|
- X
|
- Gets the x-coordinate of the mouse pointer (in client coordinates).
|
- Y
|
- Gets the y-coordinate of the mouse pointer (in client coordinates).
|
See Also
Splitter Class | Splitter MembersTopic | System.WinForms Namespace