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!

DataGridRow.OnMouseDown (Int32, Int32, Rectangle)

Called by the DataGrid when a click occurs in the row's client area. The coordinates are normalized to the rectangle's top left point.

[Visual Basic]
Overloads Overridable Public Function OnMouseDown( _
   ByVal x As Integer, _
   ByVal y As Integer, _
   ByVal rowHeaders As Rectangle _
) As Boolean
[C#]
public virtual bool OnMouseDown(
   int x,
   int y,
   Rectangle rowHeaders
);
[C++]
public: virtual bool OnMouseDown(
   int x,
   int y,
   Rectangle rowHeaders
);
[JScript]
public function OnMouseDown(
   x : int,
   y : int,
   rowHeaders : Rectangle
) : Boolean;

Parameters

x
[To be supplied.]
y
[To be supplied.]
rowHeaders
[To be supplied.]

Return Value

True if the mouse event has been handled and the grid should not process it any further. False otherwise.

See Also

DataGridRow Class | DataGridRow Members | System.WinForms Namespace | DataGridRow.OnMouseDown Overload List