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!

IDesignerEventService.AddOnDocumentCreated

Adds a handler to the document created event.

[Visual Basic]
Sub AddOnDocumentCreated( _
   ByVal handler As DocumentEventHandler _
)
[C#]
void AddOnDocumentCreated(
   DocumentEventHandler handler
);
[C++]
void AddOnDocumentCreated(
   DocumentEventHandler* handler
) = 0;
[JScript]
function AddOnDocumentCreated(
   handler : DocumentEventHandler
);

Parameters

handler
The event handler to add.

Remarks

The document created event will be raised when a new document has been created and fully loaded and is ready for user input.

See Also

IDesignerEventService Interface | IDesignerEventService Members | System.ComponentModel.Design Namespace