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!

Control.AddOnCreateHandle

Adds an event handler for the createHandle event. The createHandle event occurs immediately after the control's handle is created.

[Visual Basic]
Public Sub AddOnCreateHandle( _
   ByVal handler As EventHandler _
)
[C#]
public void AddOnCreateHandle(
   EventHandler handler
);
[C++]
public: void AddOnCreateHandle(
   EventHandler* handler
);
[JScript]
public function AddOnCreateHandle(
   handler : EventHandler
);

Parameters

handler
New handler to install for this event.

See Also

Control Class | Control Members | System.WinForms Namespace | RemoveOnCreateHandle