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!

DataGrid.OnMouseDown

Raises the OnMouseDown event.

[Visual Basic]
Overrides Protected Sub OnMouseDown( _
   ByVal e As MouseEventArgs _
)
[C#]
protected override void OnMouseDown(
   MouseEventArgs e
);
[C++]
protected: override void OnMouseDown(
   MouseEventArgs* e
);
[JScript]
protected override function OnMouseDown(
   e : MouseEventArgs
);

Parameters

e
A MouseEventArgs that contains data about the OnMouseDown event.

Remarks

Raising an event invokes the event-handling method through a delegate. For an overview, see TBD. Notes to Inheritors When overriding OnMouseDown in a derived class, be sure to call the base class's OnMouseDown method.

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace