Click or drag to resize

BatchEditBeginEditAsync Method

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

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

Parameters

sync  Boolean
If true, the Task returned is guaranteed to be complete.
editable  IBatchEditable
The editable object.

Return Value

TaskBatchEdit
New BatchEdit instance.
See Also