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!

SplitterEventArgs Constructor

Initializes an instance of the SplitterEventArgs class with the specified coordinates of the mouse pointer and the upper-left corner of the Splitter.

[Visual Basic]
Public Sub New( _
   ByVal x As Integer, _
   ByVal y As Integer, _
   ByVal splitX As Integer, _
   ByVal splitY As Integer _
)
[C#]
public SplitterEventArgs(
   int x,
   int y,
   int splitX,
   int splitY
);
[C++]
public: SplitterEventArgs(
   int x,
   int y,
   int splitX,
   int splitY
);
[JScript]
public function SplitterEventArgs(
   x : int,
   y : int,
   splitX : int,
   splitY : int
);

Parameters

x
The x-coordinate of the mouse pointer (in client coordinates).
y
[To be supplied.]
splitX
[To be supplied.]
splitY
[To be supplied.]

See Also

SplitterEventArgs Class | SplitterEventArgs Members | System.WinForms Namespace | Splitter