IBatchEditable Interface |
Namespace: Demo3D.Common
public interface IBatchEditable
The IBatchEditable type exposes the following members.
| Name | Description | |
|---|---|---|
| BeginEditAsync |
Start batch editing. Use BatchEdit where possible instead.
| |
| EndEditAsync |
End batch editing.
|
| Name | Description | |
|---|---|---|
| EditBegunAsync |
Raised on first call to BeginEditAsync(Boolean).
| |
| EditEndedAsync |
Raised on last call to EndEditAsync(Boolean).
|
// For async code. await BatchEdit.BeginEditAsync(editable).UsingAsync(() => { // issue commands to be batched }); // For synchronous code. using (new BatchEdit(editable)) { // issue commands to be batched }