BiAbstractFiller
Abstract class representing a filler which can be applied to a component. Override the methods _apply() and _layout() on subclasses.
This class extends BiObject and therefore all methods and fields available for BiObject are also available for BiAbstractFiller .
Constructor
new BiAbstractFiller ( )
Parameters
No parameters.
Properties
None.
Methods
| Name | Description |
apply | Applies the filler to a component. This method should not be called directly, use setBackgroundFiller on the component instead (which in turns calls apply on the filler). A filler can only be used on one component, setting it on a second component will raise an error. |
Events
None.
Static Methods
None.
Static Fields
None.
Remarks
None.
Method Details
apply
Applies the filler to a component. This method should not be called directly, use setBackgroundFiller on the component instead (which in turns calls apply on the filler). A filler can only be used on one component, setting it on a second component will raise an error.
Syntax
object.apply ( oComponent ) Parameters
| Name | Type | Optional | Default | Descripton |
oComponent | | the component to apply the filler to |
Return Type
void