Provides a mechanism for batch editing.
Namespace: Demo3D.CommonAssembly: Demo3D.IO (in Demo3D.IO.dll) Version: 19.00.00
Syntaxpublic interface IBatchEditable
The IBatchEditable type exposes the following members.
Methods
Events
Remarks
These methods should only ever be called in pairs, first
BeginEditAsync(Boolean) and later
EndEditAsync(Boolean). Consider using
BatchEdit.
// For async code.
await using (await BatchEdit.BeginEditAsync(editable)) {
// issue commands to be batched
});
// For synchronous code.
using (new BatchEdit(editable)) {
// issue commands to be batched
}
See Also