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 SplitterMoved Event

[To be supplied.]

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

[Visual Basic]
Private Sub SplitterName_SplitterMoved( _
   ByVal sender As Object, _
   ByVal e As SplitterEventArgs _
)
[C#]
private void SplitterName_SplitterMoved(
   object sender,
   SplitterEventArgs e
);
[C++]
private: void SplitterName_SplitterMoved(
   Object* sender,
   SplitterEventArgs* e
);
[JScript]
private SplitterName_SplitterMoved(
   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