Description
The Prime
method is a public instance method of the Editor.ControlWidget
class. It is designed to be called immediately after the creation of a ControlWidget
instance. This method is intended to perform any necessary initialization tasks that should occur right after the widget is instantiated.
Usage
To use the Prime
method, ensure that you have an instance of Editor.ControlWidget
. Call the method on this instance to perform any post-creation initialization. This is typically done in scenarios where the widget needs to be prepared for use immediately after being created.
Example
// Example of using the Prime method
// Assume 'widget' is an instance of Editor.ControlWidget
Editor.ControlWidget widget = new Editor.ControlWidget();
// Call the Prime method to initialize the widget
widget.Prime();
// The widget is now ready for further operations