interface XSheetAnnotation in module com::sun::star::sheet::

(Global Index)

Syntax

interface XSheetAnnotation : com::sun::star::uno::XInterface ;

Description

represents an annotation on a sheet.

See also

CellAnnotation

Method Summary

getPosition

getAuthor

getDate

getIsVisible

setIsVisible specifies if the annotation is permanently visible.

Known Services Which Export this Interface

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

Method Details



getPosition

Syntax

com::sun::star::table::CellAddress getPosition ();

Returns

the position of the annotation in the document.

getAuthor

Syntax

string getAuthor ();

Returns

the name of the user who last changed the annotation.

getDate

Syntax

string getDate ();

Returns

a formatted string for the date when the annotation was last changed.

getIsVisible

Syntax

boolean getIsVisible ();

Returns

whether the annotation is permanently visible or not.

setIsVisible

Syntax

void setIsVisible (
boolean bIsVisible );

Description

specifies if the annotation is permanently visible.

Top of Page