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

(Global Index)

Syntax

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

Description

represents something (such as a cell range) that can contain an array formula.

Method Summary

getArrayFormula returns the array formula of the range.

setArrayFormula sets the array formula of the range.

Known Services Which Export this Interface

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

Method Details



getArrayFormula

Syntax

string getArrayFormula ();

Description

returns the array formula of the range.

If the range does not contain an array formula, an empty string is returned.


setArrayFormula

Syntax

void setArrayFormula (
string aFormula );

Description

sets the array formula of the range.

Setting this to an empty string erases the array formula.

Top of Page