Construct a new component instance
ReadonlyDefaultDefault property value storage - used by the default property getters and setters.
ReadonlyDisposeDispose Event signaled when the object is being disposed. NOTE: Inheriting classes should use AddDisposeHandler instead.
ReadonlyEventscClassBase event API
ReadonlyUThe object can be disposed
The component class specific NLS request
The component property API
Create function that can abort asynchronous code in case the function is called again or the owner instance have been disposed. This is useful with problematic cases where for example server request is sent and the return is handled asynchronously (with a callback). Meanwhile the configuration may have changed making the code in the callback unnecessary or even harmful. *
A function with first parameter as function to check the abort state: Can be used in the function: if(abort()) return; //abort
Check only the dispose state - don't check subsequent calls to the function.
ProtectedAddAdd a dispose handler called when this object is being disposed. The dispose handlers are called in reverse order (the latest first).
The dispose handler - should make any manual clean up necessary when the object is being disposed.
Automatically dispose the given objects when this object is disposed.
The objects to dispose along with this object.
Disposes the class object.
Get the value of a named property.
The name of the property
Gets the dispose state of the current class object.
True, if the component is disposed.
Set a value for the named property.
The name of the property
The new value for the property
String representation of the component instance. Can be overridden by inheriting classes.
StaticEnableEnable events for detecting when an event listener is added or removed
the class object to monitor
The base class for all View components