LibreOffice Module sc (master) 1
bigrange.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
9
10#include <bigrange.hxx>
11#include <document.hxx>
12
13bool ScBigAddress::IsValid( const ScDocument& rDoc ) const
14{ // min/max interval bounds define whole col/row/tab
15 return
16 ((0 <= nCol && nCol <= rDoc.MaxCol())
18 ((0 <= nRow && nRow <= rDoc.MaxRow())
20 ((0 <= nTab && nTab < rDoc.GetTableCount())
22 ;
23}
24
25/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool IsValid(const ScDocument &rDoc) const
Definition: bigrange.cxx:13
sal_Int64 nTab
Definition: bigrange.hxx:32
sal_Int64 nRow
Definition: bigrange.hxx:30
sal_Int64 nCol
Definition: bigrange.hxx:31
static constexpr sal_Int64 nRangeMin
Definition: bigrange.hxx:150
static constexpr sal_Int64 nRangeMax
Definition: bigrange.hxx:151
SC_DLLPUBLIC SCCOL MaxCol() const
Definition: document.hxx:892
SC_DLLPUBLIC SCROW MaxRow() const
Definition: document.hxx:893
SC_DLLPUBLIC SCTAB GetTableCount() const
Definition: document.cxx:297