'Declaration
Public Event SplitterMoved As SplitterEventHandler
public event SplitterEventHandler SplitterMoved
Event Data
The event handler receives an argument of type SplitterEventArgs containing data related to this event. The following SplitterEventArgs properties provide information specific to this event.
Property | Description |
---|---|
SplitX | Gets or sets the x-coordinate of the upper-left corner of the System.Windows.Forms.Splitter (in client coordinates). |
SplitY | Gets or sets the y-coordinate of the upper-left corner of the System.Windows.Forms.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