Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: sheet ::

interface XSheetAnnotation

Base Interface
com::sun::star::uno::XInterface

Description
provides methods to query data of the annotation and to show and hide it.
See also
com::sun::star::sheet::CellAnnotation


Known Services which Export this Interface

com::sun::star::sheet::CellAnnotation represents a cell annotation object attached to a spreadsheet cell.

Methods' Summary

getPosition
getAuthor
getDate
getIsVisible
setIsVisible specifies whether the annotation is permanently visible.

Methods' Details

getPosition
 
com::sun::star::table::CellAddress
getPosition();
Returns
the position of cell in the spreadsheet document that contains this annotation.
getAuthor
 
string
getAuthor();
Returns
the name of the user who last changed the annotation.
getDate
 
string
getDate();
Returns
a formatted string representing the date when the annotation was last changed.
getIsVisible
 
boolean
getIsVisible();
Returns
whether the annotation is permanently visible.
setIsVisible
 
void
setIsVisible(
[ in ] boolean bIsVisible );

Description
specifies whether the annotation is permanently visible.

Top of Page