Skip to main content
Version: 4.1

SplitterEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the SplitterMoved event.

public class SplitterEventArgs : EventArgs

Constructors

Instance member 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.

NameTypeDescription
xInt32The x-coordinate of the mouse pointer (in client coordinates).
yInt32The y-coordinate of the mouse pointer (in client coordinates).
splitXInt32The x-coordinate of the upper-left corner of the splitter (in client coordinates).
splitYInt32The y-coordinate of the upper-left corner of the splitter (in client coordinates).

Properties

Instance member SplitX

Int32: Returns or sets the x-coordinate of the upper-left corner of the splitter (in client coordinates).

Instance member SplitY

Int32: Returns or sets the y-coordinate of the upper-left corner of the splitter (in client coordinates).

Instance member X

Int32: Returns the x-coordinate of the mouse pointer (in client coordinates).

Instance member Y

Int32: Returns the y-coordinate of the mouse pointer (in client coordinates).

Used By

NameDescription
SplitterEventHandlerRepresents the method that will handle the SplitterMoved event of a SplitContainer.