The StartInitialize
method is an asynchronous operation that begins the initialization process for a drop object in the editor. This method is part of the Editor.BaseDropObject
class and is used to set up the object with the provided drag data.
The StartInitialize
method is an asynchronous operation that begins the initialization process for a drop object in the editor. This method is part of the Editor.BaseDropObject
class and is used to set up the object with the provided drag data.
To use the StartInitialize
method, you need to call it on an instance of BaseDropObject
and pass a string containing the drag data. This method will return a Task
, which can be awaited to ensure the initialization process completes before proceeding with further operations.
// Example usage of StartInitialize method public async Task InitializeDropObject(Editor.BaseDropObject dropObject, string dragData) { await dropObject.StartInitialize(dragData); // Further operations can be performed after initialization }