/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef __com_sun_star_sheet_NamedRange_idl__ #define __com_sun_star_sheet_NamedRange_idl__ #include #include #include 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 obtained from the FormulaMapGroupSpecialOffset::NAME offset and this index as data part.

@see com::sun::star::sheet::FormulaToken @see com::sun::star::sheet::FormulaMapGroupSpecialOffset::NAME @since OOo 3.0 */ [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 OOo 3.0 */ [optional, property] boolean IsSharedFormula; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */