Occurs when all BeginBatchOperation calls are matched with EndBatchOperation calls.
The following declaration shows the syntax for a method that handles the AfterBatchOperation event.
[Visual Basic] Private Sub IDesignerHostName_AfterBatchOperation( _ ByVal sender As Object, _ ByVal e As EventArgs _ ) [C#] private void IDesignerHostName_AfterBatchOperation( object sender, EventArgs e ); [C++] private: void IDesignerHostName_AfterBatchOperation( Object* sender, EventArgs* e ); [JScript] private IDesignerHostName_AfterBatchOperation( sender : Object, e : EventArgs );
Property | Description |
---|---|
|
An System.ComponentModel.Design.IDesignerHost.AfterBatchOperation event would be called when a batch operation completes, that is, when all BeginBatchOperation calls are matched with EndBatchOperation calls. Intermediate calls to either BeginBatchOperation or EndBatchOperation will not generate this event.
IDesignerHost Interface | IDesignerHost MembersTopic | System.ComponentModel.Design Namespace