1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 module com
{ module sun
{ module star
{ module text
{
24 /** This service provides access to the structure of the levels of document indexes.
28 The element type is Sequence< PropertyValues >. Each element in this sequence represents
29 a member of an index line. The following properties are part of such an element.
37 <p>TokenEntryNumber - chapter number, used in content indexes
41 <p>TokenEntryText - text of the entry
45 <p>TokenTabStop - tab stop
49 <p>TokenText - user defined text
53 <p>TokenPageNumber - page number
57 <p>TokenChapterInfo - chapter info, in illustration indexes,
58 table indexes, user indexes, table of objects and alphabetical indexes
62 <p>TokenHyperlinkStart - start of a hyperlink</p>
65 <p>TokenHyperlinkEnd - end of a hyperlink</p>
68 <p>TokenBibliographyDataField - bibliographic data field
74 <p>CharacterStyleName</p>
75 <p>Name of the character style applied to the element. Invalid in tab stops.</p>
78 <p>TabStopRightAligned</p>
79 <p>Tab stop is right aligned. Only valid for tab stops.</p>
82 <p>TabStopPosition</p>
83 <p>Position of the tab stop. Only valid for tab stops.</p>
86 <p>TabStopFillCharacter</p>
87 <p>Fill character in tab stops. Only valid for tab stops.</p>
91 <p>If true insert tab character.</p>
95 <p>Text. Only valid in user defined text.</p>
99 <p>Valid in chapter info and entry number only. See ChapterFormat.</p>
100 <p>Other information.</p>
103 <p>In chapter info only com.sun.star.text.ChapterFormat.NUMBER, com.sun.star.text.ChapterFormat.NAME, and
104 com.sun.star.text.ChapterFormat.NAME_NUMBER constants are allowed.</p>
107 <p>In entry number only com.sun.star.text.ChapterFormat.NUMBER and com.sun.star.text.ChapterFormat.DIGIT constants are allowed.</p>
113 <p>Valid in chapter info and entry number only. Denotes the level up to which
114 the chapter information is given. Values permitted 1 to 10 inclusive.</p>
118 published service DocumentIndexLevelFormat
120 interface com
::sun
::star
::container
::XIndexReplace
;
134 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */