Click or drag to resize

BatchEditBeginEditAsync Method

Starts editing an IBatchEditable object. The objects EndEditAsync(Boolean) is called when Complete(Boolean)is called.

Namespace:  Demo3D.Common
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public static Task<BatchEdit> BeginEditAsync(
	bool sync,
	IBatchEditable editable
)

Parameters

sync
Type: SystemBoolean
If true, the Task returned is guaranteed to be complete.
editable
Type: Demo3D.CommonIBatchEditable
The editable object.

Return Value

Type: TaskBatchEdit
New BatchEdit instance.
See Also