/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: NamedRange.idl,v $ * * $Revision: 1.8 $ * * last change: $Author: kz $ $Date: 2008-03-05 19:16:01 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ #ifndef __com_sun_star_sheet_NamedRange_idl__ #define __com_sun_star_sheet_NamedRange_idl__ #ifndef __com_sun_star_sheet_XNamedRange_idl__ #include #endif #ifndef __com_sun_star_container_XNamed_idl__ #include #endif #ifndef __com_sun_star_sheet_XCellRangeReferrer_idl__ #include #endif //============================================================================= module com { module sun { module star { module sheet { //============================================================================= /** represents a named range in a spreadsheet document.

In fact a named range is a named formula expression. A cell range address is one possible content of a named range.

@see com::sun::star::sheet::NamedRanges */ published service NamedRange { //------------------------------------------------------------------------- /** provides access to the settings of the named range. */ interface com::sun::star::sheet::XNamedRange; //------------------------------------------------------------------------- /** provides access to the cell range object referred by this named range.

This works only, if the named range contains a single cell range address.

*/ interface com::sun::star::sheet::XCellRangeReferrer; //------------------------------------------------------------------------- /** returns the index used to refer to this name in token arrays.

A token describing a defined name shall contain the op-code OPCODE_NAME and this index as data part.

@see com::sun::star::sheet::FormulaToken @see com::sun::star::sheet::FormulaMapGroupSpecialOffset::NAME @since OOo 2.x */ [optional, readonly, property] long TokenIndex; //------------------------------------------------------------------------- /** Determines if this defined name represents a shared formula.

This special property shall not be used externally. It is used by import and export filters for compatibility with spreadsheet documents containing shared formulas. Shared formulas are shared by several cells to save memory and to decrease file size.

A defined name with this property set will not appear in the user interface of Calc, and its name will not appear in cell formulas. A formula referring to this defined name will show the formula definition contained in the name instead.

@since CWS xmlfilter03 */ [optional, property] boolean IsSharedFormula; }; //============================================================================= }; }; }; }; #endif