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!

IDesignerHost BeforeBatchOperation Event

Occurs before a batch operation is to begin.

The following declaration shows the syntax for a method that handles the BeforeBatchOperation event.

[Visual Basic]
Private Sub IDesignerHostName_BeforeBatchOperation( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void IDesignerHostName_BeforeBatchOperation(
   object sender,
   EventArgs e
);
[C++]
private: void IDesignerHostName_BeforeBatchOperation(
   Object* sender,
   EventArgs* e
);
[JScript]
private IDesignerHostName_BeforeBatchOperation(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

Remarks

This occurs only on the first call to BeginBatchOperation. Subsquent calls will not generate this event until all the matching EndBatchOperation calls have been made.

See Also

IDesignerHost Interface | IDesignerHost MembersTopic | System.ComponentModel.Design Namespace