Class UIBandThumb
public class UIBandThumb extends UIThumb
{
// Constructors
public UIBandThumb();
public UIBandThumb(IUIComponent comp);
// Methods
public Insets getInsets();
public void paint(FxGraphics g);
}
This class implements a band thumb control. A UIBandThumb object provides a tool on a band control to allow maximizing and sliding of the control.
UIComponent
|
+--UIContainer
|
+--UIStateContainer
|
+--UISingleContainer
|
+--UIThumb
|
+--UIBandThumb
public UIBandThumb();
Creates a band thumb control with no content.
public UIBandThumb(IUIComponent comp);
Creates a band thumb control using the specified component for content.
Parameter | Description |
comp
| The component to be displayed within the control.
|
public Insets getInsets();
Determines the band thumb control's insets, which indicate the size of the control's border.
Return Value:
Returns an Insets object containing the band thumb control's insets.
public void paint(FxGraphics g);
Draws the band thumb control.
Return Value:
No return value.
Parameter | Description |
g
| The graphics context.
|