Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / text / TextRangeContentProperties.idl
blob042b4d5b3736d2a23dd5c67f57a3d0743e63a99b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __com_sun_star_text_TextRangeContentProperties_idl__
21 #define __com_sun_star_text_TextRangeContentProperties_idl__
23 #include <com/sun/star/table/XCell.idl>
24 #include <com/sun/star/text/XTextContent.idl>
25 #include <com/sun/star/text/XDocumentIndex.idl>
26 #include <com/sun/star/text/XTextTable.idl>
27 #include <com/sun/star/text/XTextFrame.idl>
28 #include <com/sun/star/text/XTextSection.idl>
29 #include <com/sun/star/text/XDocumentIndexMark.idl>
30 #include <com/sun/star/text/XFootnote.idl>
34 module com { module sun { module star { module text {
37 /** describes the structural properties to retrieve text contents.
39 @since OOo 3.3
41 service TextRangeContentProperties
43 /** may contain a document index. */
44 [optional, readonly, property] com::sun::star::text::XDocumentIndex
45 DocumentIndex;
47 /** may contain a text table. */
48 [optional, readonly, property] com::sun::star::text::XTextTable
49 TextTable;
51 /** may contain a table cell. */
52 [optional, readonly, property] com::sun::star::table::XCell Cell;
54 /** may contain a text frame. */
55 [optional, readonly, property] com::sun::star::text::XTextFrame
56 TextFrame;
58 /** may contain a text section. */
59 [optional, readonly, property] com::sun::star::text::XTextSection
60 TextSection;
62 /** may contain a document index mark. */
63 [optional, readonly, property] com::sun::star::text::XDocumentIndexMark
64 DocumentIndexMark;
66 /** may contain a reference mark. */
67 [optional, readonly, property] com::sun::star::text::XTextContent
68 ReferenceMark;
70 /** may contain a footnote. */
71 [optional, readonly, property] com::sun::star::text::XFootnote Footnote;
73 /** may contain a endnote. */
74 [optional, readonly, property] com::sun::star::text::XFootnote Endnote;
76 /** may contain a nested text content.
78 For example, may contain an InContentMetadata or a
79 com::sun::star::text::textfield::MetadataField.
81 [optional, readonly, property] com::sun::star::text::XTextContent
82 NestedTextContent;
87 }; }; }; };
89 #endif
91 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */