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.OnColumnHeaderClick

Raises the System.WinForms.DataGrid.ColumnHeaderClick event.

[Visual Basic]
Protected Sub OnColumnHeaderClick( _
   ByVal e As EventArgs _
)
[C#]
protected void OnColumnHeaderClick(
   EventArgs e
);
[C++]
protected: void OnColumnHeaderClick(
   EventArgs* e
);
[JScript]
protected function OnColumnHeaderClick(
   e : EventArgs
);

Parameters

e
An EventArgs that contains the event data.

Remarks

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

See Also

DataGrid Class | DataGrid Members | System.WinForms Namespace