:: com :: sun :: star :: ui ::

interface XPanel

Methods' Summary
getId The panel identifier  
getTitle Get the panel title string  
setTitle Set the panel title string  
isExpanded Is the panel expanded  
collapse Collapse the panel to only show its title bar  
expand Expand and display the panel  
getOrderIndex Get the ordering index of the panel in the deck  
setOrderIndex Set the ordering index of the panel in the deck  
moveFirst Move panel as first item of the deck  
moveLast Move panel as last item of the deck  
moveUp Move panel one step up in the deck  
moveDown Move the panel one step down in the deck  
getDialog Get the panel dialog element  
Methods' Details
getId
string
getId();

Description
The panel identifier
getTitle
string
getTitle();

Description
Get the panel title string
setTitle
void
setTitle( [in] string  newTitle );

Description
Set the panel title string
Parameter newTitle
The new title string
isExpanded
boolean
isExpanded();

Description
Is the panel expanded
collapse
void
collapse();

Description
Collapse the panel to only show its title bar
expand
void
expand( [in] boolean  bCollapseOther );

Description
Expand and display the panel
Parameter bCollapseOther
  • TRUE collapse all other panels of the deck
  • FALSE do not change other panels state
getOrderIndex
long
getOrderIndex();

Description
Get the ordering index of the panel in the deck
setOrderIndex
void
setOrderIndex( [in] long  newOrderIndex );

Description
Set the ordering index of the panel in the deck
moveFirst
void
moveFirst();

Description
Move panel as first item of the deck
moveLast
void
moveLast();

Description
Move panel as last item of the deck
moveUp
void
moveUp();

Description
Move panel one step up in the deck
moveDown
void
moveDown();

Description
Move the panel one step down in the deck
getDialog
::com::sun::star::awt::XWindow
getDialog();

Description
Get the panel dialog element
Top of Page