:: com :: sun :: star :: style ::

interface XStyle
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::container::XNamed
    |
    +-XStyle
Description
specifies a template for a style (aka style sheet).
Developers Guide
9.6.1 Drawing Documents and Presentation Documents - Overall Document Features - Styles - Graphics Styles
7.4.1 Text Documents - Overall Document Features - Styles

Methods' Summary
isUserDefined identifies a style as defined by the user.
isInUse
getParentStyle
setParentStyle sets the name of the parent style.
Methods' Details
isUserDefined
boolean
isUserDefined();
 
 

Description
identifies a style as defined by the user.
isInUse
boolean
isInUse();
 
 

Returns
true if this type is used in the document.
getParentStyle
string
getParentStyle();
 
 

Returns
the name of the parent style, probably empty.
setParentStyle
void
setParentStyle(
 
[in] string 

raises(

 
aParentStyle ) 
::com::sun::star::container::NoSuchElementException );

Description
sets the name of the parent style.
Top of Page