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

Removes an event handler that has been associated with the System.ComponentModel.Design.IDesignerHost.BeforeBatchOperation event.

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

Parameters

handler
The EventHandler to remove.

Remarks

This method allows designer host clients to perform operations before other handlers are notified of the batch operation beginning. This handler will only be called when the first call to BeginBatchOperation is made in an operation. Subsquent calls will not generate this event until all the matching EndBatchOperation calls have been made.

See Also

IDesignerHost Interface | IDesignerHost Members | System.ComponentModel.Design Namespace | BeginBatchOperation | EndBatchOperation | AddOnAfterBatchOperation | RemoveOnAfterBatchOperation