SplitterEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Provides data for the SplitterMoved event.
- C#
- VB.NET
public class SplitterEventArgs : EventArgs
Public Class SplitterEventArgs
Inherits EventArgs
Constructors
SplitterEventArgs(x, y, splitX, splitY)
Initializes an instance of the SplitterEventArgs class with the specified coordinates of the mouse pointer and the coordinates of the upper-left corner of the SplitContainer control.
| Name | Type | Description |
|---|---|---|
| x | Int32 | The x-coordinate of the mouse pointer (in client coordinates). |
| y | Int32 | The y-coordinate of the mouse pointer (in client coordinates). |
| splitX | Int32 | The x-coordinate of the upper-left corner of the splitter (in client coordinates). |
| splitY | Int32 | The y-coordinate of the upper-left corner of the splitter (in client coordinates). |
Properties
SplitX
Int32: Returns or sets the x-coordinate of the upper-left corner of the splitter (in client coordinates).
SplitY
Int32: Returns or sets the y-coordinate of the upper-left corner of the splitter (in client coordinates).
X
Int32: Returns the x-coordinate of the mouse pointer (in client coordinates).
Y
Int32: Returns the y-coordinate of the mouse pointer (in client coordinates).
Used By
| Name | Description |
|---|---|
| SplitterEventHandler | Represents the method that will handle the SplitterMoved event of a SplitContainer. |