Description
The `Frame` method is a public instance method of the `ComponentListWidget` class, which is derived from the `Editor.Widget` base class. This method is used to perform operations related to the rendering or updating of the widget's frame. It does not take any parameters and does not return a value.
Usage
To use the `Frame` method, you must have an instance of the `ComponentListWidget` class. This method is typically called within the context of a UI update loop or when you need to refresh the widget's display. Since it is a public method, it can be accessed from any code that has a reference to a `ComponentListWidget` instance.
Example
// Assuming you have an instance of ComponentListWidget
ComponentListWidget myWidget = new ComponentListWidget();
// Call the Frame method to update or render the widget's frame
myWidget.Frame();