:: com :: sun :: star :: awt ::

interface XTabController
Description
specifies the basic operations for a tab controller.

Methods' Summary
setModel sets the tab controller model.  
getModel returns the tab controller model.  
setContainer set the control container.  
getContainer returns the control container.  
getControls returns all controls of the control container.  
autoTabOrder enables automatic tab order.  
activateTabOrder activates tab order.  
activateFirst sets the focus to the first control that can be reached with the TAB key.  
activateLast sets the focus to the last control that can be reached with the TAB key.  
Methods' Details
setModel
void
setModel( [in] XTabControllerModel  Model );

Description
sets the tab controller model.
getModel
XTabControllerModel
getModel();

Description
returns the tab controller model.
setContainer
void
setContainer( [in] XControlContainer  Container );

Description
set the control container.
getContainer
XControlContainer
getContainer();

Description
returns the control container.
getControls
sequence< XControl >
getControls();

Description
returns all controls of the control container.
autoTabOrder
void
autoTabOrder();

Description
enables automatic tab order.
activateTabOrder
void
activateTabOrder();

Description
activates tab order.
activateFirst
void
activateFirst();

Description
sets the focus to the first control that can be reached with the TAB key.
activateLast
void
activateLast();

Description
sets the focus to the last control that can be reached with the TAB key.
Top of Page