Skip to main content
Version: 3.5

SplitterEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the SplitterMoved event.

public class SplitterEventArgs : EventArgs

Constructors

Instance memberSplitterEventArgs(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 memberSplitX

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

Instance memberSplitY

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

Instance memberX

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

Instance memberY

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.