LibreOffice Module svtools (master) 1
rtfkeywd.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 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#include <o3tl/string_view.hxx>
21#include <rtl/ustring.hxx>
22#include <svtools/rtfkeywd.hxx>
23#include <svtools/rtftoken.h>
24
25#include <algorithm>
26#include <string_view>
27
28namespace {
29
30// the table is still to be sorted
31struct RTF_TokenEntry
32{
33 std::u16string_view sToken;
34 int nToken;
35};
36
37}
38
39// Flag: RTF-token table has been sorted
40static bool bSortKeyWords = false;
41
42static RTF_TokenEntry aRTFTokenTab[] = {
43{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_IGNORE), RTF_IGNOREFLAG},
44{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTF), RTF_RTF},
45{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ANSI), RTF_ANSITYPE},
46{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MAC), RTF_MACTYPE},
47{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PC), RTF_PCTYPE},
48{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PCA), RTF_PCATYPE},
49{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NEXTCSET), RTF_NEXTTYPE},
50{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_STYLESHEET), RTF_STYLESHEET},
51{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBASEDON), RTF_SBASEDON},
52{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SNEXT), RTF_SNEXT},
53{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FONTTBL), RTF_FONTTBL},
54{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DEFF), RTF_DEFF},
55{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FNIL), RTF_FNIL},
56{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FROMAN), RTF_FROMAN},
57{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FSWISS), RTF_FSWISS},
58{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FMODERN), RTF_FMODERN},
59{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FSCRIPT), RTF_FSCRIPT},
60{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FDECOR), RTF_FDECOR},
61{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTECH), RTF_FTECH},
62{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FCHARSET), RTF_FCHARSET},
63{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FALT), RTF_FALT},
64{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FPRQ), RTF_FPRQ},
65{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLORTBL), RTF_COLORTBL},
66{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RED), RTF_RED},
67{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GREEN), RTF_GREEN},
68{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BLUE), RTF_BLUE},
69{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CF), RTF_CF},
70{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CB), RTF_CB},
71{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_INFO), RTF_INFO},
72{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TITLE), RTF_TITLE},
73{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SUBJECT), RTF_SUBJECT},
74{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AUTHOR), RTF_AUTHOR},
75{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OPERATOR), RTF_OPERATOR},
76{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_KEYWORDS), RTF_KEYWORDS},
77{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COMMENT), RTF_COMMENT},
78{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERSION), RTF_VERSION},
79{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOCCOMM), RTF_DOCCOMM},
80{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERN), RTF_VERN},
81{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CREATIM), RTF_CREATIM},
82{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVTIM), RTF_REVTIM},
83{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PRINTIM), RTF_PRINTIM},
84{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BUPTIM), RTF_BUPTIM},
85{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EDMINS), RTF_EDMINS},
86{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOFPAGES), RTF_NOFPAGES},
87{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOFWORDS), RTF_NOFWORDS},
88{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOFCHARS), RTF_NOFCHARS},
89{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ID), RTF_ID},
90{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_YR), RTF_YR},
91{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MO), RTF_MO},
92{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DY), RTF_DY},
93{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HR), RTF_HR},
94{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MIN), RTF_MIN},
95{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ANNOTATION), RTF_ANNOTATION},
96{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATNID), RTF_ATNID},
97{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTNOTE), RTF_FOOTNOTE},
98{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTER), RTF_FOOTER},
99{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERL), RTF_FOOTERL},
100{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERR), RTF_FOOTERR},
101{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERF), RTF_FOOTERF},
102{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADER), RTF_HEADER},
103{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERL), RTF_HEADERL},
104{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERR), RTF_HEADERR},
105{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERF), RTF_HEADERF},
106{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_XE), RTF_XE},
107{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BXE), RTF_BXE},
108{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_IXE), RTF_IXE},
109{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RXE), RTF_RXE},
110{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TXE), RTF_TXE},
111{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TC), RTF_TC},
112{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TCF), RTF_TCF},
113{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TCL), RTF_TCL},
114{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKSTART), RTF_BKMKSTART},
115{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKEND), RTF_BKMKEND},
116{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICT), RTF_PICT},
117{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICW), RTF_PICW},
118{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICH), RTF_PICH},
120{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WBMPLANES), RTF_WBMPLANES},
122{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICWGOAL), RTF_PICWGOAL},
123{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICHGOAL), RTF_PICHGOAL},
124{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BIN), RTF_BIN},
125{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICSCALEX), RTF_PICSCALEX},
126{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICSCALEY), RTF_PICSCALEY},
127{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICSCALED), RTF_PICSCALED},
128{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WBITMAP), RTF_WBITMAP},
129{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WMETAFILE), RTF_WMETAFILE},
130{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MACPICT), RTF_MACPICT},
131{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICCROPT), RTF_PICCROPT},
132{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICCROPB), RTF_PICCROPB},
133{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICCROPL), RTF_PICCROPL},
134{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICCROPR), RTF_PICCROPR},
135{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FIELD), RTF_FIELD},
136{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDDIRTY), RTF_FLDDIRTY},
137{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDEDIT), RTF_FLDEDIT},
138{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDLOCK), RTF_FLDLOCK},
139{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDPRIV), RTF_FLDPRIV},
140{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDINST), RTF_FLDINST},
141{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDRSLT), RTF_FLDRSLT},
142{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PAPERW), RTF_PAPERW},
143{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PAPERH), RTF_PAPERH},
144{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGL), RTF_MARGL},
145{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGR), RTF_MARGR},
146{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGT), RTF_MARGT},
147{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGB), RTF_MARGB},
148{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FACINGP), RTF_FACINGP},
149{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GUTTER), RTF_GUTTER},
150{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DEFTAB), RTF_DEFTAB},
151{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WIDOWCTRL), RTF_WIDOWCTRL},
152{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHHOTZ), RTF_HYPHHOTZ},
153{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNSEP), RTF_FTNSEP},
154{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNSEPC), RTF_FTNSEPC},
155{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNCN), RTF_FTNCN},
156{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ENDNOTES), RTF_ENDNOTES},
157{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ENDDOC), RTF_ENDDOC},
158{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNTJ), RTF_FTNTJ},
159{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNBJ), RTF_FTNBJ},
160{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNSTART), RTF_FTNSTART},
161{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNRESTART), RTF_FTNRESTART},
162{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNSTART), RTF_PGNSTART},
163{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINESTART), RTF_LINESTART},
164{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LANDSCAPE), RTF_LANDSCAPE},
165{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRACWIDTH), RTF_FRACWIDTH},
166{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NEXTFILE), RTF_NEXTFILE},
167{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TEMPLATE), RTF_TEMPLATE},
168{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MAKEBACKUP), RTF_MAKEBACKUP},
169{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DEFFORMAT), RTF_DEFFORMAT},
170{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVISIONS), RTF_REVISIONS},
171{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGMIRROR), RTF_MARGMIRROR},
172{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVPROP), RTF_REVPROP},
173{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVBAR), RTF_REVBAR},
174{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SECTD), RTF_SECTD},
175{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBKNONE), RTF_SBKNONE},
176{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBKCOL), RTF_SBKCOL},
177{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBKPAGE), RTF_SBKPAGE},
178{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBKEVEN), RTF_SBKEVEN},
179{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBKODD), RTF_SBKODD},
180{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNSTARTS), RTF_PGNSTARTS},
181{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNCONT), RTF_PGNCONT},
182{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNRESTART), RTF_PGNRESTART},
183{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNDEC), RTF_PGNDEC},
184{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNUCRM), RTF_PGNUCRM},
185{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNLCRM), RTF_PGNLCRM},
186{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNUCLTR), RTF_PGNUCLTR},
187{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNLCLTR), RTF_PGNLCLTR},
188{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNX), RTF_PGNX},
189{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNY), RTF_PGNY},
190{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERY), RTF_HEADERY},
191{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERY), RTF_FOOTERY},
192{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINEMOD), RTF_LINEMOD},
193{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINEX), RTF_LINEX},
194{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINESTARTS), RTF_LINESTARTS},
196{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINEPPAGE), RTF_LINEPAGE},
197{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINECONT), RTF_LINECONT},
198{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERTALT), RTF_VERTALT},
199{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERTALB), RTF_VERTALB},
200{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERTALC), RTF_VERTALC},
201{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VERTALJ), RTF_VERTALJ},
202{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLS), RTF_COLS},
203{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLSX), RTF_COLSX},
204{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLNO), RTF_COLNO},
205{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLSR), RTF_COLSR},
206{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLW), RTF_COLW},
207{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINEBETCOL), RTF_LINEBETCOL},
208{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ENDNHERE), RTF_ENDNHERE},
209{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TITLEPG), RTF_TITLEPG},
210{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PARD), RTF_PARD},
211{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_S), RTF_S},
212{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_QL), RTF_QL},
213{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_QR), RTF_QR},
214{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_QJ), RTF_QJ},
215{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_QC), RTF_QC},
216{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FI), RTF_FI},
217{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LI), RTF_LI},
218{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LIN), RTF_LIN},
219{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RI), RTF_RI},
220{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RIN), RTF_RIN},
221{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SB), RTF_SB},
222{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SA), RTF_SA},
223{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SL), RTF_SL},
224{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_INTBL), RTF_INTBL},
225{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_KEEP), RTF_KEEP},
226{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_KEEPN), RTF_KEEPN},
227{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVEL), RTF_LEVEL},
228{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SBYS), RTF_SBYS},
229{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PAGEBB), RTF_PAGEBB},
230{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOLINE), RTF_NOLINE},
231{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TX), RTF_TX},
232{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TQL), RTF_TQL},
233{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TQR), RTF_TQR},
234{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TQC), RTF_TQC},
235{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TQDEC), RTF_TQDEC},
236{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TB), RTF_TB},
237{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRT), RTF_BRDRT},
238{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRB), RTF_BRDRB},
239{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRL), RTF_BRDRL},
240{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRR), RTF_BRDRR},
241{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BOX), RTF_BOX},
242{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRS), RTF_BRDRS},
243{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTH), RTF_BRDRTH},
244{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRSH), RTF_BRDRSH},
245{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDB), RTF_BRDRDB},
246{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDOT), RTF_BRDRDOT},
247{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRHAIR), RTF_BRDRHAIR},
248{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRSP), RTF_BRSP},
249{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLDOT), RTF_TLDOT},
250{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLHYPH), RTF_TLHYPH},
251{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLUL), RTF_TLUL},
252{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLTH), RTF_TLTH},
253{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSX), RTF_POSX},
254{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSXC), RTF_POSXC},
255{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSXI), RTF_POSXI},
256{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSXL), RTF_POSXL},
257{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSXO), RTF_POSXO},
258{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSXR), RTF_POSXR},
259{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSY), RTF_POSY},
260{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYIL), RTF_POSYIL},
261{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYT), RTF_POSYT},
262{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYC), RTF_POSYC},
263{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYB), RTF_POSYB},
264{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ABSW), RTF_ABSW},
265{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DXFRTEXT), RTF_DXFRTEXT},
266{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PVMRG), RTF_PVMRG},
267{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PVPG), RTF_PVPG},
268{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PHMRG), RTF_PHMRG},
269{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PHPG), RTF_PHPG},
270{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PHCOL), RTF_PHCOL},
271{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRB), RTF_CLBRDRB},
272{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRT), RTF_CLBRDRT},
273{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRL), RTF_CLBRDRL},
274{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBRDRR), RTF_CLBRDRR},
275{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADL), RTF_CLPADL},
276{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADT), RTF_CLPADT},
277{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADB), RTF_CLPADB},
278{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADR), RTF_CLPADR},
279{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADFL), RTF_CLPADFL},
280{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADFT), RTF_CLPADFT},
281{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADFB), RTF_CLPADFB},
282{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLPADFR), RTF_CLPADFR},
283{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TROWD), RTF_TROWD},
284{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRQL), RTF_TRQL},
285{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRQR), RTF_TRQR},
286{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRQC), RTF_TRQC},
287{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRGAPH), RTF_TRGAPH},
288{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRRH), RTF_TRRH},
289{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRLEFT), RTF_TRLEFT},
290{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CELLX), RTF_CELLX},
291{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLMGF), RTF_CLMGF},
292{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLMRG), RTF_CLMRG},
293{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PLAIN), RTF_PLAIN},
294{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_B), RTF_B},
295{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_I), RTF_I},
296{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_STRIKE), RTF_STRIKE},
297{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OUTL), RTF_OUTL},
298{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHAD), RTF_SHAD},
299{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SCAPS), RTF_SCAPS},
300{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CAPS), RTF_CAPS},
301{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_V), RTF_V},
302{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_F), RTF_F},
303{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FS), RTF_FS},
304{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EXPND), RTF_EXPND},
305{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EXPNDTW), RTF_EXPNDTW},
306{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_KERNING), RTF_KERNING},
307{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UL), RTF_UL},
308{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULW), RTF_ULW},
309{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULD), RTF_ULD},
310{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULDB), RTF_ULDB},
311{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULNONE), RTF_ULNONE},
312{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UP), RTF_UP},
313{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DN), RTF_DN},
314{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVISED), RTF_REVISED},
315{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SUB), RTF_SUB},
316{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOSUPERSUB), RTF_NOSUPERSUB},
317{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SUPER), RTF_SUPER},
318{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHDATE), RTF_CHDATE},
319{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHTIME), RTF_CHTIME},
320{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHPGN), RTF_CHPGN},
321{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHFTN), RTF_CHFTN},
322{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHATN), RTF_CHATN},
323{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHFTNSEP), RTF_CHFTNSEP},
324{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHFTNSEPC), RTF_CHFTNSEPC},
325{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FORMULA), RTF_FORMULA},
327{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OPTHYPH), RTF_OPTIONALHYPHEN},
329{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEXCHAR), RTF_HEX},
330{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CELL), RTF_CELL},
331{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ROW), RTF_ROW},
332{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PAR), RTF_PAR},
333{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SECT), RTF_SECT},
334{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PAGE), RTF_PAGE},
335{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COLUMN), RTF_COLUM},
336{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINE), RTF_LINE},
337{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TAB), RTF_TAB},
338{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SUBENTRY), RTF_SUBENTRYINDEX},
339
340{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DEFLANG), RTF_DEFLANG},
341{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LANG), RTF_LANG},
342{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PMMETAFILE), RTF_OSMETAFILE},
343{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DIBITMAP), RTF_DIBITMAP},
344{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_KEYCODE), RTF_KEYCODE},
345{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FN), RTF_FNKEY},
346{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ALT), RTF_ALTKEY},
347{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHIFT), RTF_SHIFTKEY},
348{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CTRL), RTF_CTRLKEY},
349{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHDPL), RTF_CHDATEL},
350{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHDPA), RTF_CHDATEA},
351{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EMDASH), RTF_EMDASH},
352{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ENDASH), RTF_ENDASH},
353{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BULLET), RTF_BULLET},
354{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LQUOTE), RTF_LQUOTE},
355{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RQUOTE), RTF_RQUOTE},
356{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LDBLQUOTE), RTF_LDBLQUOTE},
357{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RDBLQUOTE), RTF_RDBLQUOTE},
358
359{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKCOLF), RTF_BKMKCOLF},
360{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKCOLL), RTF_BKMKCOLL},
361{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PSOVER), RTF_PSOVER},
362{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOCTEMP), RTF_DOCTEMP},
363{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BINFSXN), RTF_BINFSXN},
364{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BINSXN), RTF_BINSXN},
365{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGWSXN), RTF_PGWSXN},
366{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGHSXN), RTF_PGHSXN},
367{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGLSXN), RTF_MARGLSXN},
368{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGRSXN), RTF_MARGRSXN},
369{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGTSXN), RTF_MARGTSXN},
370{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MARGBSXN), RTF_MARGBSXN},
371{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GUTTERSXN), RTF_GUTTERSXN},
372{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LNDSCPSXN), RTF_LNDSCPSXN},
373{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FACPGSXN), RTF_FACPGSXN},
374{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLEQ), RTF_TLEQ},
375{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRBTW), RTF_BRDRBTW},
376{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRBAR), RTF_BRDRBAR},
377{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRW), RTF_BRDRW},
378{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRCF), RTF_BRDRCF},
379{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ABSH), RTF_ABSH},
380{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PVPARA), RTF_PVPARA},
381{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOWRAP), RTF_NOWRAP},
382{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTX), RTF_DFRMTXTX},
383{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTY), RTF_DFRMTXTY},
384{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DROPCAPLI), RTF_DROPCAPLI},
385{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DROPCAPT), RTF_DROPCAPT},
386{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ABSNOOVRLP), RTF_ABSNOOVRLP},
387{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSNEGX), RTF_POSNEGX},
388{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSNEGY), RTF_POSNEGY},
389{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DELETED), RTF_DELETED},
390
391{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHADING), RTF_SHADING},
392{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGHORIZ), RTF_BGHORIZ},
393{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGVERT), RTF_BGVERT},
394{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGFDIAG), RTF_BGFDIAG},
395{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGBDIAG), RTF_BGBDIAG},
396{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGCROSS), RTF_BGCROSS},
397{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDCROSS), RTF_BGDCROSS},
398{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKHORIZ), RTF_BGDKHORIZ},
399{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKVERT), RTF_BGDKVERT},
400{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKFDIAG), RTF_BGDKFDIAG},
401{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKBDIAG), RTF_BGDKBDIAG},
402{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKCROSS), RTF_BGDKCROSS},
403{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BGDKDCROSS), RTF_BGDKDCROSS},
404{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CFPAT), RTF_CFPAT},
405{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CBPAT), RTF_CBPAT},
406
407{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLSHDNG), RTF_CLSHDNG},
408{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGHORIZ), RTF_CLBGHORIZ},
409{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGVERT), RTF_CLBGVERT},
410{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGFDIAG), RTF_CLBGFDIAG},
411{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGBDIAG), RTF_CLBGBDIAG},
412{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGCROSS), RTF_CLBGCROSS},
413{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGDCROSS), RTF_CLBGDCROSS},
414{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKHOR), RTF_CLBGDKHOR},
415{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLBGDKVERT), RTF_CLBGDKVERT},
420{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLCFPAT), RTF_CLCFPAT},
421{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLCBPAT), RTF_CLCBPAT},
422
423{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AB), RTF_AB},
424{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ACAPS), RTF_ACAPS},
425{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ACF), RTF_ACF},
426{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ADDITIVE), RTF_ADDITIVE},
427{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ADN), RTF_ADN},
428{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AENDDOC), RTF_AENDDOC},
429{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AENDNOTES), RTF_AENDNOTES},
430{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AEXPND), RTF_AEXPND},
431{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AF), RTF_AF},
432{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFS), RTF_AFS},
433{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNBJ), RTF_AFTNBJ},
434{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNCN), RTF_AFTNCN},
435{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNALC), RTF_AFTNNALC},
436{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNAR), RTF_AFTNNAR},
437{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNAUC), RTF_AFTNNAUC},
438{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNCHI), RTF_AFTNNCHI},
439{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNRLC), RTF_AFTNNRLC},
440{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNRUC), RTF_AFTNNRUC},
443{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNSEP), RTF_AFTNSEP},
444{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNSEPC), RTF_AFTNSEPC},
445{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNSTART), RTF_AFTNSTART},
446{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNTJ), RTF_AFTNTJ},
447{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AI), RTF_AI},
448{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ALANG), RTF_ALANG},
449{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ALLPROT), RTF_ALLPROT},
450{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ANNOTPROT), RTF_ANNOTPROT},
451{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AOUTL), RTF_AOUTL},
452{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ASCAPS), RTF_ASCAPS},
453{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ASHAD), RTF_ASHAD},
454{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ASTRIKE), RTF_ASTRIKE},
455{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATNAUTHOR), RTF_ATNAUTHOR},
456{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATNICN), RTF_ATNICN},
457{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATNREF), RTF_ATNREF},
458{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATNTIME), RTF_ATNTIME},
459{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATRFEND), RTF_ATRFEND},
460{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ATRFSTART), RTF_ATRFSTART},
461{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AUL), RTF_AUL},
462{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AULD), RTF_AULD},
463{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AULDB), RTF_AULDB},
464{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AULNONE), RTF_AULNONE},
465{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AULW), RTF_AULW},
466{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AUP), RTF_AUP},
467{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKPUB), RTF_BKMKPUB},
468{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASH), RTF_BRDRDASH},
469{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRKFRM), RTF_BRKFRM},
470{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CCHS), RTF_CCHS},
471{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CPG), RTF_CPG},
472{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CS), RTF_CS},
473{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CVMME), RTF_CVMME},
474{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DATAFIELD), RTF_DATAFIELD},
475{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DO), RTF_DO},
476{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBXCOLUMN), RTF_DOBXCOLUMN},
477{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBXMARGIN), RTF_DOBXMARGIN},
478{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBXPAGE), RTF_DOBXPAGE},
479{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBYMARGIN), RTF_DOBYMARGIN},
480{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBYPAGE), RTF_DOBYPAGE},
481{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOBYPARA), RTF_DOBYPARA},
482{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DODHGT), RTF_DODHGT},
483{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOLOCK), RTF_DOLOCK},
484{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPAENDHOL), RTF_DPAENDHOL},
485{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPAENDL), RTF_DPAENDL},
486{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPAENDSOL), RTF_DPAENDSOL},
487{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPAENDW), RTF_DPAENDW},
488{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPARC), RTF_DPARC},
489{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPARCFLIPX), RTF_DPARCFLIPX},
490{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPARCFLIPY), RTF_DPARCFLIPY},
492{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTL), RTF_DPASTARTL},
494{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPASTARTW), RTF_DPASTARTW},
495{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCALLOUT), RTF_DPCALLOUT},
496{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOA), RTF_DPCOA},
497{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOACCENT), RTF_DPCOACCENT},
499{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOBORDER), RTF_DPCOBORDER},
500{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCODABS), RTF_DPCODABS},
503{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCODTOP), RTF_DPCODTOP},
504{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOLENGTH), RTF_DPCOLENGTH},
505{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOMINUSX), RTF_DPCOMINUSX},
506{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOMINUSY), RTF_DPCOMINUSY},
507{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOOFFSET), RTF_DPCOOFFSET},
508{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOSMARTA), RTF_DPCOSMARTA},
510{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOTRIGHT), RTF_DPCOTRIGHT},
513{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPCOUNT), RTF_DPCOUNT},
514{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPELLIPSE), RTF_DPELLIPSE},
515{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPENDGROUP), RTF_DPENDGROUP},
516{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCB), RTF_DPFILLBGCB},
517{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCG), RTF_DPFILLBGCG},
518{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLBGCR), RTF_DPFILLBGCR},
521{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCB), RTF_DPFILLFGCB},
522{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCG), RTF_DPFILLFGCG},
523{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLFGCR), RTF_DPFILLFGCR},
526{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPFILLPAT), RTF_DPFILLPAT},
527{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPGROUP), RTF_DPGROUP},
528{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINE), RTF_DPLINE},
529{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOB), RTF_DPLINECOB},
530{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOG), RTF_DPLINECOG},
531{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINECOR), RTF_DPLINECOR},
532{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDADO), RTF_DPLINEDADO},
534{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDASH), RTF_DPLINEDASH},
535{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEDOT), RTF_DPLINEDOT},
536{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEGRAY), RTF_DPLINEGRAY},
538{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEPAL), RTF_DPLINEPAL},
540{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPLINEW), RTF_DPLINEW},
542{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPPOLYGON), RTF_DPPOLYGON},
543{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPPOLYLINE), RTF_DPPOLYLINE},
544{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPPTX), RTF_DPPTX},
545{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPPTY), RTF_DPPTY},
546{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPRECT), RTF_DPRECT},
547{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPROUNDR), RTF_DPROUNDR},
548{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPSHADOW), RTF_DPSHADOW},
549{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPSHADX), RTF_DPSHADX},
550{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPSHADY), RTF_DPSHADY},
551{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPTXBX), RTF_DPTXBX},
552{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPTXBXMAR), RTF_DPTXBXMAR},
553{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPTXBXTEXT), RTF_DPTXBXTEXT},
554{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPX), RTF_DPX},
555{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPXSIZE), RTF_DPXSIZE},
556{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPY), RTF_DPY},
557{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DPYSIZE), RTF_DPYSIZE},
558{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DS), RTF_DS},
559{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EMSPACE), RTF_EMSPACE},
560{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ENSPACE), RTF_ENSPACE},
561{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FBIDI), RTF_FBIDI},
562{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FET), RTF_FET},
563{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FID), RTF_FID},
564{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FILE), RTF_FILE},
565{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FILETBL), RTF_FILETBL},
566{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDALT), RTF_FLDALT},
567{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FNETWORK), RTF_FNETWORK},
568{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FONTEMB), RTF_FONTEMB},
569{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FONTFILE), RTF_FONTFILE},
570{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FORMDISP), RTF_FORMDISP},
571{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FORMPROT), RTF_FORMPROT},
572{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FORMSHADE), RTF_FORMSHADE},
573{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOSNUM), RTF_FOSNUM},
574{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRELATIVE), RTF_FRELATIVE},
575{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNALT), RTF_FTNALT},
576{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNIL), RTF_FTNIL},
577{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNALC), RTF_FTNNALC},
578{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNAR), RTF_FTNNAR},
579{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNAUC), RTF_FTNNAUC},
580{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNCHI), RTF_FTNNCHI},
581{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNRLC), RTF_FTNNRLC},
582{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNRUC), RTF_FTNNRUC},
583{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNRSTCONT), RTF_FTNRSTCONT},
584{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNRSTPG), RTF_FTNRSTPG},
585{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTTRUETYPE), RTF_FTTRUETYPE},
586{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FVALIDDOS), RTF_FVALIDDOS},
587{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FVALIDHPFS), RTF_FVALIDHPFS},
588{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FVALIDMAC), RTF_FVALIDMAC},
589{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FVALIDNTFS), RTF_FVALIDNTFS},
590{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHAUTO), RTF_HYPHAUTO},
591{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHCAPS), RTF_HYPHCAPS},
592{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHCONSEC), RTF_HYPHCONSEC},
593{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHPAR), RTF_HYPHPAR},
594{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINKSELF), RTF_LINKSELF},
595{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINKSTYLES), RTF_LINKSTYLES},
596{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRCH), RTF_LTRCH},
597{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRDOC), RTF_LTRDOC},
598{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRMARK), RTF_LTRMARK},
599{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRPAR), RTF_LTRPAR},
600{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRROW), RTF_LTRROW},
601{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LTRSECT), RTF_LTRSECT},
602{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOCOLBAL), RTF_NOCOLBAL},
604{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOTABIND), RTF_NOTABIND},
606{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJALIAS), RTF_OBJALIAS},
607{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJALIGN), RTF_OBJALIGN},
608{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJAUTLINK), RTF_OBJAUTLINK},
609{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJCLASS), RTF_OBJCLASS},
610{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPB), RTF_OBJCROPB},
611{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPL), RTF_OBJCROPL},
612{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPR), RTF_OBJCROPR},
613{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJCROPT), RTF_OBJCROPT},
614{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJDATA), RTF_OBJDATA},
615{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJECT), RTF_OBJECT},
616{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJEMB), RTF_OBJEMB},
617{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJH), RTF_OBJH},
618{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJICEMB), RTF_OBJICEMB},
619{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJLINK), RTF_OBJLINK},
620{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJLOCK), RTF_OBJLOCK},
621{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJNAME), RTF_OBJNAME},
622{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJPUB), RTF_OBJPUB},
623{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJSCALEX), RTF_OBJSCALEX},
624{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJSCALEY), RTF_OBJSCALEY},
625{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJSECT), RTF_OBJSECT},
626{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJSETSIZE), RTF_OBJSETSIZE},
627{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJSUB), RTF_OBJSUB},
628{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJTIME), RTF_OBJTIME},
629{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJTRANSY), RTF_OBJTRANSY},
630{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJUPDATE), RTF_OBJUPDATE},
631{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJW), RTF_OBJW},
632{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OTBLRUL), RTF_OTBLRUL},
633{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHN), RTF_PGNHN},
634{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSC), RTF_PGNHNSC},
635{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSH), RTF_PGNHNSH},
636{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSM), RTF_PGNHNSM},
637{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSN), RTF_PGNHNSN},
638{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNHNSP), RTF_PGNHNSP},
639{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICBMP), RTF_PICBMP},
640{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICBPP), RTF_PICBPP},
641{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PN), RTF_PN},
642{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNACROSS), RTF_PNACROSS},
643{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNB), RTF_PNB},
644{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNCAPS), RTF_PNCAPS},
645{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNCARD), RTF_PNCARD},
646{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNCF), RTF_PNCF},
647{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNDEC), RTF_PNDEC},
648{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNF), RTF_PNF},
649{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNFS), RTF_PNFS},
650{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNHANG), RTF_PNHANG},
651{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNI), RTF_PNI},
652{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNINDENT), RTF_PNINDENT},
653{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLCLTR), RTF_PNLCLTR},
654{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLCRM), RTF_PNLCRM},
655{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLVL), RTF_PNLVL},
656{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLVLBLT), RTF_PNLVLBLT},
657{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLVLBODY), RTF_PNLVLBODY},
658{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNLVLCONT), RTF_PNLVLCONT},
659{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNNUMONCE), RTF_PNNUMONCE},
660{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNORD), RTF_PNORD},
661{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNORDT), RTF_PNORDT},
662{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNPREV), RTF_PNPREV},
663{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNQC), RTF_PNQC},
664{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNQL), RTF_PNQL},
665{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNQR), RTF_PNQR},
666{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRESTART), RTF_PNRESTART},
667{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNSCAPS), RTF_PNSCAPS},
668{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNSECLVL), RTF_PNSECLVL},
669{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNSP), RTF_PNSP},
670{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNSTART), RTF_PNSTART},
671{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNSTRIKE), RTF_PNSTRIKE},
672{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNTEXT), RTF_PNTEXT},
673{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNTXTA), RTF_PNTXTA},
674{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNTXTB), RTF_PNTXTB},
675{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNUCLTR), RTF_PNUCLTR},
676{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNUCRM), RTF_PNUCRM},
677{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNUL), RTF_PNUL},
678{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNULD), RTF_PNULD},
679{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNULDB), RTF_PNULDB},
680{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNULNONE), RTF_PNULNONE},
681{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNULW), RTF_PNULW},
682{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PRCOLBL), RTF_PRCOLBL},
683{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PRINTDATA), RTF_PRINTDATA},
684{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PSZ), RTF_PSZ},
685{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PUBAUTO), RTF_PUBAUTO},
686{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RESULT), RTF_RESULT},
687{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVAUTH), RTF_REVAUTH},
688{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVDTTM), RTF_REVDTTM},
689{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVPROT), RTF_REVPROT},
690{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVTBL), RTF_REVTBL},
691{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RSLTBMP), RTF_RSLTBMP},
692{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RSLTMERGE), RTF_RSLTMERGE},
693{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RSLTPICT), RTF_RSLTPICT},
694{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RSLTRTF), RTF_RSLTRTF},
695{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RSLTTXT), RTF_RSLTTXT},
696{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLCH), RTF_RTLCH},
697{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLDOC), RTF_RTLDOC},
698{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLMARK), RTF_RTLMARK},
699{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLPAR), RTF_RTLPAR},
700{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLROW), RTF_RTLROW},
701{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_RTLSECT), RTF_RTLSECT},
702{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SEC), RTF_SEC},
703{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SECTNUM), RTF_SECTNUM},
705{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SLMULT), RTF_SLMULT},
706{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SOFTCOL), RTF_SOFTCOL},
708{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SOFTLINE), RTF_SOFTLINE},
709{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SOFTPAGE), RTF_SOFTPAGE},
710{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SPRSSPBF), RTF_SPRSSPBF},
711{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SPRSTSP), RTF_SPRSTSP},
713{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SWPBDR), RTF_SWPBDR},
714{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TCN), RTF_TCN},
715{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRANSMF), RTF_TRANSMF},
716{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRB), RTF_TRBRDRB},
717{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRH), RTF_TRBRDRH},
718{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRL), RTF_TRBRDRL},
719{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRR), RTF_TRBRDRR},
720{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRT), RTF_TRBRDRT},
721{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRBRDRV), RTF_TRBRDRV},
722{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRHDR), RTF_TRHDR},
723{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRKEEP), RTF_TRKEEP},
724{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDB), RTF_TRPADDB},
725{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDL), RTF_TRPADDL},
726{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDR), RTF_TRPADDR},
727{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDT), RTF_TRPADDT},
728{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFB), RTF_TRPADDFB},
729{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFL), RTF_TRPADDFL},
730{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFR), RTF_TRPADDFR},
731{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TRPADDFT), RTF_TRPADDFT},
732
733
734{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WRAPTRSP), RTF_WRAPTRSP},
735{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_XEF), RTF_XEF},
736{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ZWJ), RTF_ZWJ},
737{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ZWNJ), RTF_ZWNJ},
738
739
740{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ABSLOCK), RTF_ABSLOCK},
743{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNCNUM), RTF_AFTNNCNUM},
744{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBAR), RTF_AFTNNDBAR},
745{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNDBNUM), RTF_AFTNNDBNUM},
750{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_AFTNNGBNUM), RTF_AFTNNGBNUM},
757{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ANIMTEXT), RTF_ANIMTEXT},
758{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ANSICPG), RTF_ANSICPG},
759{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BACKGROUND), RTF_BACKGROUND},
760{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BDBFHDR), RTF_BDBFHDR},
761{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BLIPTAG), RTF_BLIPTAG},
762{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BLIPUID), RTF_BLIPUID},
763{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BLIPUPI), RTF_BLIPUPI},
764{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRART), RTF_BRDRART},
765{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHD), RTF_BRDRDASHD},
766{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHDD), RTF_BRDRDASHDD},
768{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRDASHSM), RTF_BRDRDASHSM},
769{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRINSET), RTF_BRDRINSET},
770{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDROUTSET), RTF_BRDROUTSET},
771{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDREMBOSS), RTF_BRDREMBOSS},
773{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRFRAME), RTF_BRDRFRAME},
774{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNLG), RTF_BRDRTHTNLG},
775{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNMG), RTF_BRDRTHTNMG},
776{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTHTNSG), RTF_BRDRTHTNSG},
777{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHLG), RTF_BRDRTNTHLG},
778{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHMG), RTF_BRDRTNTHMG},
779{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTNTHSG), RTF_BRDRTNTHSG},
783{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRTRIPLE), RTF_BRDRTRIPLE},
784{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRWAVY), RTF_BRDRWAVY},
785{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BRDRWAVYDB), RTF_BRDRWAVYDB},
786{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CATEGORY), RTF_CATEGORY},
787{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CGRID), RTF_CGRID},
788{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHARSCALEX), RTF_CHARSCALEX},
789{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGBDIAG), RTF_CHBGBDIAG},
790{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGCROSS), RTF_CHBGCROSS},
791{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGDCROSS), RTF_CHBGDCROSS},
797{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGDKVERT), RTF_CHBGDKVERT},
798{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGFDIAG), RTF_CHBGFDIAG},
799{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGHORIZ), RTF_CHBGHORIZ},
800{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBGVERT), RTF_CHBGVERT},
801{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHBRDR), RTF_CHBRDR},
802{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHCBPAT), RTF_CHCBPAT},
803{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHCFPAT), RTF_CHCFPAT},
804{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CHSHDNG), RTF_CHSHDNG},
805{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLTXLRTB), RTF_CLTXLRTB},
806{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLTXTBRL), RTF_CLTXTBRL},
807{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALB), RTF_CLVERTALB},
808{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALC), RTF_CLVERTALC},
809{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLVERTALT), RTF_CLVERTALT},
810{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLVMGF), RTF_CLVMGF},
811{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLVMRG), RTF_CLVMRG},
812{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLTXTBRLV), RTF_CLTXTBRLV},
813{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLTXBTLR), RTF_CLTXBTLR},
814{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CLTXLRTBV), RTF_CLTXLRTBV},
815{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_COMPANY), RTF_COMPANY},
816{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CRAUTH), RTF_CRAUTH},
817{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_CRDATE), RTF_CRDATE},
818{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DATE), RTF_DATE},
819{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DEFLANGFE), RTF_DEFLANGFE},
820{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRAUTH), RTF_DFRAUTH},
821{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRDATE), RTF_DFRDATE},
822{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRSTART), RTF_DFRSTART},
823{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRSTOP), RTF_DFRSTOP},
824{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRXST), RTF_DFRXST},
825{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DGMARGIN), RTF_DGMARGIN},
826{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DNTBLNSBDB), RTF_DNTBLNSBDB},
827{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOCTYPE), RTF_DOCTYPE},
828{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DOCVAR), RTF_DOCVAR},
830{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EMBO), RTF_EMBO},
831{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EMFBLIP), RTF_EMFBLIP},
832{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_EXPSHRTN), RTF_EXPSHRTN},
833{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FAAUTO), RTF_FAAUTO},
834{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FBIAS), RTF_FBIAS},
835{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFDEFRES), RTF_FFDEFRES},
836{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFDEFTEXT), RTF_FFDEFTEXT},
837{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFENTRYMCR), RTF_FFENTRYMCR},
838{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFEXITMCR), RTF_FFEXITMCR},
839{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFFORMAT), RTF_FFFORMAT},
841{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFHELPTEXT), RTF_FFHELPTEXT},
842{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFHPS), RTF_FFHPS},
843{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFL), RTF_FFL},
844{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFMAXLEN), RTF_FFMAXLEN},
845{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFNAME), RTF_FFNAME},
846{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFOWNHELP), RTF_FFOWNHELP},
847{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFOWNSTAT), RTF_FFOWNSTAT},
848{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFPROT), RTF_FFPROT},
849{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFRECALC), RTF_FFRECALC},
850{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFRES), RTF_FFRES},
851{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFSIZE), RTF_FFSIZE},
852{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFSTATTEXT), RTF_FFSTATTEXT},
853{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFTYPE), RTF_FFTYPE},
854{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FFTYPETXT), RTF_FFTYPETXT},
855{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLDTYPE), RTF_FLDTYPE},
856{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FNAME), RTF_FNAME},
857{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FORMFIELD), RTF_FORMFIELD},
858{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FROMTEXT), RTF_FROMTEXT},
860{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNCNUM), RTF_FTNNCNUM},
861{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBAR), RTF_FTNNDBAR},
862{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUM), RTF_FTNNDBNUM},
863{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMD), RTF_FTNNDBNUMD},
864{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMK), RTF_FTNNDBNUMK},
865{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNDBNUMT), RTF_FTNNDBNUMT},
866{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNGANADA), RTF_FTNNGANADA},
867{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUM), RTF_FTNNGBNUM},
868{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUMD), RTF_FTNNGBNUMD},
869{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUMK), RTF_FTNNGBNUMK},
870{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNGBNUML), RTF_FTNNGBNUML},
871{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FTNNZODIAC), RTF_FTNNZODIAC},
874{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_G), RTF_G},
875{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GCW), RTF_GCW},
876{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GRIDTBL), RTF_GRIDTBL},
877{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HIGHLIGHT), RTF_HIGHLIGHT},
878{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HLFR), RTF_HLFR},
879{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HLINKBASE), RTF_HLINKBASE},
880{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HLLOC), RTF_HLLOC},
881{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HLSRC), RTF_HLSRC},
882{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ILVL), RTF_ILVL},
883{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_IMPR), RTF_IMPR},
884{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_JPEGBLIP), RTF_JPEGBLIP},
887{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELJC), RTF_LEVELJC},
888{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELLEGAL), RTF_LEVELLEGAL},
889{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELNFC), RTF_LEVELNFC},
892{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELOLD), RTF_LEVELOLD},
893{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELPREV), RTF_LEVELPREV},
895{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELSPACE), RTF_LEVELSPACE},
897{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LEVELTEXT), RTF_LEVELTEXT},
898{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LINKVAL), RTF_LINKVAL},
899{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LIST), RTF_LIST},
900{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTID), RTF_LISTID},
901{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTLEVEL), RTF_LISTLEVEL},
902{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTNAME), RTF_LISTNAME},
909{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTSIMPLE), RTF_LISTSIMPLE},
910{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTTABLE), RTF_LISTTABLE},
912{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LISTTEXT), RTF_LISTTEXT},
913{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LS), RTF_LS},
914{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LYTEXCTTP), RTF_LYTEXCTTP},
915{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LYTPRTMET), RTF_LYTPRTMET},
916{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MANAGER), RTF_MANAGER},
917{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_MSMCAP), RTF_MSMCAP},
918{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOFCHARSWS), RTF_NOFCHARSWS},
919{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOLEAD), RTF_NOLEAD},
920{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NONSHPPICT), RTF_NONSHPPICT},
924{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOULTRLSPC), RTF_NOULTRLSPC},
926{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJATTPH), RTF_OBJATTPH},
927{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJHTML), RTF_OBJHTML},
928{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OBJOCX), RTF_OBJOCX},
931{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OVERLAY), RTF_OVERLAY},
932{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PANOSE), RTF_PANOSE},
933{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRB), RTF_PGBRDRB},
934{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRFOOT), RTF_PGBRDRFOOT},
935{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRHEAD), RTF_PGBRDRHEAD},
936{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRL), RTF_PGBRDRL},
937{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDROPT), RTF_PGBRDROPT},
938{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRR), RTF_PGBRDRR},
939{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRSNAP), RTF_PGBRDRSNAP},
940{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRDRT), RTF_PGBRDRT},
941{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNCHOSUNG), RTF_PGNCHOSUNG},
942{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNCNUM), RTF_PGNCNUM},
943{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNDBNUMK), RTF_PGNDBNUMK},
944{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNDBNUMT), RTF_PGNDBNUMT},
945{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNGANADA), RTF_PGNGANADA},
946{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUM), RTF_PGNGBNUM},
947{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUMD), RTF_PGNGBNUMD},
948{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUMK), RTF_PGNGBNUMK},
949{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNGBNUML), RTF_PGNGBNUML},
950{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIAC), RTF_PGNZODIAC},
951{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIACD), RTF_PGNZODIACD},
952{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGNZODIACL), RTF_PGNZODIACL},
953{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PICPROP), RTF_PICPROP},
954{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNAIUEO), RTF_PNAIUEO},
955{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNAIUEOD), RTF_PNAIUEOD},
956{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNCHOSUNG), RTF_PNCHOSUNG},
957{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMD), RTF_PNDBNUMD},
958{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMK), RTF_PNDBNUMK},
959{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUML), RTF_PNDBNUML},
960{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNDBNUMT), RTF_PNDBNUMT},
961{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGANADA), RTF_PNGANADA},
962{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGBLIP), RTF_PNGBLIP},
963{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUM), RTF_PNGBNUM},
964{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUMD), RTF_PNGBNUMD},
965{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUMK), RTF_PNGBNUMK},
966{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNGBNUML), RTF_PNGBNUML},
967{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRAUTH), RTF_PNRAUTH},
968{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRDATE), RTF_PNRDATE},
969{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRNFC), RTF_PNRNFC},
970{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRNOT), RTF_PNRNOT},
971{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRPNBR), RTF_PNRPNBR},
972{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRRGB), RTF_PNRRGB},
973{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRSTART), RTF_PNRSTART},
974{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRSTOP), RTF_PNRSTOP},
975{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNRXST), RTF_PNRXST},
976{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNZODIAC), RTF_PNZODIAC},
977{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNZODIACD), RTF_PNZODIACD},
978{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PNZODIACL), RTF_PNZODIACL},
979{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LFOLEVEL), RTF_LFOLEVEL},
980{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYIN), RTF_POSYIN},
981{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_POSYOUT), RTF_POSYOUT},
982{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PRIVATE), RTF_PRIVATE},
983{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PROPNAME), RTF_PROPNAME},
984{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PROPTYPE), RTF_PROPTYPE},
985{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVAUTHDEL), RTF_REVAUTHDEL},
986{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_REVDTTMDEL), RTF_REVDTTMDEL},
987{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SAUTOUPD), RTF_SAUTOUPD},
989{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SECTEXPAND), RTF_SECTEXPAND},
993{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHIDDEN), RTF_SHIDDEN},
994{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPBOTTOM), RTF_SHPBOTTOM},
997{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPBXPAGE), RTF_SHPBXPAGE},
999{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPBYPAGE), RTF_SHPBYPAGE},
1000{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPBYPARA), RTF_SHPBYPARA},
1001{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPFBLWTXT), RTF_SHPFBLWTXT},
1002{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPFHDR), RTF_SHPFHDR},
1003{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPGRP), RTF_SHPGRP},
1004{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPINST), RTF_SHPINST},
1005{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPLEFT), RTF_SHPLEFT},
1006{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPLID), RTF_SHPLID},
1008{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPPICT), RTF_SHPPICT},
1009{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPRIGHT), RTF_SHPRIGHT},
1010{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPRSLT), RTF_SHPRSLT},
1011{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPTOP), RTF_SHPTOP},
1012{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPTXT), RTF_SHPTXT},
1013{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPWRK), RTF_SHPWRK},
1014{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPWR), RTF_SHPWR},
1015{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHPZ), RTF_SHPZ},
1016{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SPRSBSP), RTF_SPRSBSP},
1017{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SPRSLNSP), RTF_SPRSLNSP},
1018{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SPRSTSM), RTF_SPRSTSM},
1019{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_STATICVAL), RTF_STATICVAL},
1020{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_STEXTFLOW), RTF_STEXTFLOW},
1021{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_STRIKED), RTF_STRIKED},
1023{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TCELLD), RTF_TCELLD},
1024{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TIME), RTF_TIME},
1026{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UC), RTF_UC},
1027{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UD), RTF_UD},
1028{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULDASH), RTF_ULDASH},
1029{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULDASHD), RTF_ULDASHD},
1030{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULDASHDD), RTF_ULDASHDD},
1031{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTH), RTF_ULTH},
1032{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULWAVE), RTF_ULWAVE},
1033{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULC), RTF_ULC},
1034{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_U), RTF_U},
1035{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UPR), RTF_UPR},
1036{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_USERPROPS), RTF_USERPROPS},
1037{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VIEWKIND), RTF_VIEWKIND},
1038{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VIEWSCALE), RTF_VIEWSCALE},
1039{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_VIEWZK), RTF_VIEWZK},
1040{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WIDCTLPAR), RTF_WIDCTLPAR},
1042{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WPEQN), RTF_WPEQN},
1043{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WPJST), RTF_WPJST},
1044{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_WPSP), RTF_WPSP},
1045{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_YXE), RTF_YXE},
1046{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRMTXLRTB), RTF_FRMTXLRTB},
1047{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRMTXTBRL), RTF_FRMTXTBRL},
1048{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRMTXBTLR), RTF_FRMTXBTLR},
1049{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRMTXLRTBV), RTF_FRMTXLRTBV},
1050{std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FRMTXTBRLV), RTF_FRMTXTBRLV},
1051
1052// MS-2000 Tokens
1053 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTHD), RTF_ULTHD},
1054 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASH), RTF_ULTHDASH},
1055 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULLDASH), RTF_ULLDASH},
1056 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTHLDASH), RTF_ULTHLDASH},
1057 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASHD), RTF_ULTHDASHD},
1058 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULTHDASHDD), RTF_ULTHDASHDD},
1059 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULHWAVE), RTF_ULHWAVE},
1060 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ULULDBWAVE), RTF_ULULDBWAVE},
1061
1062 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LOCH), RTF_LOCH},
1063 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HICH), RTF_HICH},
1064 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DBCH), RTF_DBCH},
1065 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_LANGFE), RTF_LANGFE},
1066 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ADEFLANG), RTF_ADEFLANG},
1067 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ADEFF), RTF_ADEFF},
1068 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ACCNONE), RTF_ACCNONE},
1069 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ACCDOT), RTF_ACCDOT},
1070 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ACCCOMMA), RTF_ACCCOMMA},
1071 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TWOINONE), RTF_TWOINONE},
1072 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HORZVERT), RTF_HORZVERT},
1073 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FAHANG), RTF_FAHANG},
1074 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FAVAR), RTF_FAVAR},
1075 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FACENTER), RTF_FACENTER},
1076 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FAROMAN), RTF_FAROMAN},
1077 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FAFIXED), RTF_FAFIXED},
1078 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOCWRAP), RTF_NOCWRAP},
1079 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_NOOVERFLOW), RTF_NOOVERFLOW},
1080 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_ASPALPHA), RTF_ASPALPHA},
1081
1082// SWG specific attributes
1083 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GRFALIGNV), RTF_GRF_ALIGNV},
1084 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GRFALIGNH), RTF_GRF_ALIGNH},
1085 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_GRFMIRROR), RTF_GRF_MIRROR},
1086 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERYB), RTF_HEADER_YB},
1087 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERXL), RTF_HEADER_XL},
1088 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERXR), RTF_HEADER_XR},
1089 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERYT), RTF_FOOTER_YT},
1090 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERXL), RTF_FOOTER_XL},
1091 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERXR), RTF_FOOTER_XR},
1092 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HEADERYH), RTF_HEADER_YH},
1093 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FOOTERYH), RTF_FOOTER_YH},
1095 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_UPDNPROP), RTF_SWG_ESCPROP},
1096 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PRTDATA), RTF_SWG_PRTDATA},
1097 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_BKMKKEY), RTF_BKMK_KEY},
1098
1099// Attributes for fly frames
1100 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYPRINT), RTF_FLYPRINT},
1101 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYOPAQUE), RTF_FLYOPAQUE},
1102 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYPRTCTD), RTF_FLYPRTCTD},
1103 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYMAINCNT), RTF_FLYMAINCNT},
1104 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYVERT), RTF_FLYVERT},
1105 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYHORZ), RTF_FLYHORZ},
1106 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTL), RTF_FLYOUTLEFT},
1107 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTR), RTF_FLYOUTRIGHT},
1108 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTU), RTF_FLYOUTUPPER},
1109 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_DFRMTXTW), RTF_FLYOUTLOWER},
1110 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYANCHOR), RTF_FLYANCHOR},
1111 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYCNTNT), RTF_FLY_CNTNT},
1112 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYCOLUMN), RTF_FLY_COLUMN},
1113 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYPAGE), RTF_FLY_PAGE},
1114
1115 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHADOW), RTF_SHADOW},
1116 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHDWDIST), RTF_SHDW_DIST},
1117 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHDWSTYLE), RTF_SHDW_STYLE},
1118 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHDWCOL), RTF_SHDW_COL},
1119 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHDWFCOL), RTF_SHDW_FCOL},
1120
1121 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_FLYINPARA), RTF_FLY_INPARA},
1122
1123 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGDSCTBL), RTF_PGDSCTBL},
1124 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGDSC), RTF_PGDSC},
1125 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGDSCUSE), RTF_PGDSCUSE},
1126 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGDSCNXT), RTF_PGDSCNXT},
1127
1128 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHEN), RTF_HYPHEN},
1129 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHLEAD), RTF_HYPHLEAD},
1130 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHTRAIL), RTF_HYPHTRAIL},
1131 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_HYPHMAX), RTF_HYPHMAX},
1132
1133 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_TLSWG), RTF_TLSWG},
1134 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGBRK), RTF_PGBRK},
1135
1136 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_PGDSCNO), RTF_PGDSCNO},
1137 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SOUTLVL), RTF_SOUTLVL},
1138
1139 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SHP), RTF_SHP},
1140 /*
1141 {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPLEFT), RTF_SHPLEFT}
1142 {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPTOP), RTF_SHPTOP}
1143 {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPBOTTOM), RTF_SHPBOTTOM}
1144 {OUStringLiteral(OOO_STRING_SVTOOLS_RTF_SHPRIGHT), RTF_SHPRIGHT}
1145 */
1146 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SN), RTF_SN},
1147 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SV), RTF_SV},
1148 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_SP), RTF_SP},
1149
1150// Support for overline attributes
1151 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OL), RTF_OL},
1152 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLW), RTF_OLW},
1153 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLD), RTF_OLD},
1154 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLDB), RTF_OLDB},
1155 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLNONE), RTF_OLNONE},
1156 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLDASH), RTF_OLDASH},
1157 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLDASHD), RTF_OLDASHD},
1158 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLDASHDD), RTF_OLDASHDD},
1159 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTH), RTF_OLTH},
1160 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLWAVE), RTF_OLWAVE},
1161 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLC), RTF_OLC},
1162 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTHD), RTF_OLTHD},
1163 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASH), RTF_OLTHDASH},
1164 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLLDASH), RTF_OLLDASH},
1165 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTHLDASH), RTF_OLTHLDASH},
1166 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASHD), RTF_OLTHDASHD},
1167 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLTHDASHDD), RTF_OLTHDASHDD},
1168 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLHWAVE), RTF_OLHWAVE},
1169 {std::u16string_view(u"" OOO_STRING_SVTOOLS_RTF_OLOLDBWAVE), RTF_OLOLDBWAVE}
1170};
1171
1172
1173int GetRTFToken( std::u16string_view rSearch )
1174{
1175 if( !bSortKeyWords )
1176 {
1177 std::sort( std::begin(aRTFTokenTab), std::end(aRTFTokenTab),
1178 [](const RTF_TokenEntry & lhs, const RTF_TokenEntry & rhs)
1179 {
1180 return lhs.sToken < rhs.sToken;
1181 } );
1182 bSortKeyWords = true;
1183 }
1184
1185 auto findCompare = [](const RTF_TokenEntry & lhs, std::u16string_view s)
1186 {
1187 return o3tl::compareToIgnoreAsciiCase(s, lhs.sToken) > 0;
1188 };
1189 auto findIt = std::lower_bound( std::begin(aRTFTokenTab), std::end(aRTFTokenTab), rSearch, findCompare);
1190 if (findIt != std::end(aRTFTokenTab) && o3tl::compareToIgnoreAsciiCase(rSearch, findIt->sToken)==0)
1191 return findIt->nToken;
1192
1193 return 0;
1194}
1195
1196/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
float u
static bool findCompare(const TokenEntry< T > &lhs, std::u16string_view rhs)
Definition: htmlkywd.cxx:50
int compareToIgnoreAsciiCase(std::u16string_view s1, std::u16string_view s2)
DefTokenId nToken
static RTF_TokenEntry aRTFTokenTab[]
Definition: rtfkeywd.cxx:42
static bool bSortKeyWords
Definition: rtfkeywd.cxx:40
int GetRTFToken(std::u16string_view rSearch)
Definition: rtfkeywd.cxx:1173
#define OOO_STRING_SVTOOLS_RTF_AFTNNRLC
Definition: rtfkeywd.hxx:411
#define OOO_STRING_SVTOOLS_RTF_PNGBNUMK
Definition: rtfkeywd.hxx:955
#define OOO_STRING_SVTOOLS_RTF_PNQC
Definition: rtfkeywd.hxx:646
#define OOO_STRING_SVTOOLS_RTF_SNEXT
Definition: rtfkeywd.hxx:339
#define OOO_STRING_SVTOOLS_RTF_HEADERY
Definition: rtfkeywd.hxx:194
#define OOO_STRING_SVTOOLS_RTF_FTNNCNUM
Definition: rtfkeywd.hxx:850
#define OOO_STRING_SVTOOLS_RTF_PGBRK
Definition: rtfkeywd.hxx:1122
#define OOO_STRING_SVTOOLS_RTF_TRQC
Definition: rtfkeywd.hxx:365
#define OOO_STRING_SVTOOLS_RTF_PGNHNSN
Definition: rtfkeywd.hxx:620
#define OOO_STRING_SVTOOLS_RTF_FILE
Definition: rtfkeywd.hxx:541
#define OOO_STRING_SVTOOLS_RTF_DPCOBORDER
Definition: rtfkeywd.hxx:476
#define OOO_STRING_SVTOOLS_RTF_DS
Definition: rtfkeywd.hxx:535
#define OOO_STRING_SVTOOLS_RTF_OLOLDBWAVE
Definition: rtfkeywd.hxx:1149
#define OOO_STRING_SVTOOLS_RTF_PICSCALEY
Definition: rtfkeywd.hxx:280
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHLG
Definition: rtfkeywd.hxx:759
#define OOO_STRING_SVTOOLS_RTF_FORMULA
Definition: rtfkeywd.hxx:393
#define OOO_STRING_SVTOOLS_RTF_CHBGDKHORIZ
Definition: rtfkeywd.hxx:778
#define OOO_STRING_SVTOOLS_RTF_SPRSBSP
Definition: rtfkeywd.hxx:1008
#define OOO_STRING_SVTOOLS_RTF_DY
Definition: rtfkeywd.hxx:140
#define OOO_STRING_SVTOOLS_RTF_STATICVAL
Definition: rtfkeywd.hxx:1011
#define OOO_STRING_SVTOOLS_RTF_BALANCEDCOLUMN
Definition: rtfkeywd.hxx:1087
#define OOO_STRING_SVTOOLS_RTF_DPLINESOLID
Definition: rtfkeywd.hxx:516
#define OOO_STRING_SVTOOLS_RTF_REVTIM
Definition: rtfkeywd.hxx:315
#define OOO_STRING_SVTOOLS_RTF_DPCOMINUSX
Definition: rtfkeywd.hxx:482
#define OOO_STRING_SVTOOLS_RTF_FOOTERXR
Definition: rtfkeywd.hxx:1084
#define OOO_STRING_SVTOOLS_RTF_CHFTNSEPC
Definition: rtfkeywd.hxx:90
#define OOO_STRING_SVTOOLS_RTF_COMPANY
Definition: rtfkeywd.hxx:805
#define OOO_STRING_SVTOOLS_RTF_FTTRUETYPE
Definition: rtfkeywd.hxx:568
#define OOO_STRING_SVTOOLS_RTF_LINECONT
Definition: rtfkeywd.hxx:215
#define OOO_STRING_SVTOOLS_RTF_FVALIDNTFS
Definition: rtfkeywd.hxx:572
#define OOO_STRING_SVTOOLS_RTF_RSLTPICT
Definition: rtfkeywd.hxx:676
#define OOO_STRING_SVTOOLS_RTF_FTNRESTART
Definition: rtfkeywd.hxx:182
#define OOO_STRING_SVTOOLS_RTF_ULHWAVE
Definition: rtfkeywd.hxx:1051
#define OOO_STRING_SVTOOLS_RTF_HLSRC
Definition: rtfkeywd.hxx:871
#define OOO_STRING_SVTOOLS_RTF_FOOTNOTE
Definition: rtfkeywd.hxx:172
#define OOO_STRING_SVTOOLS_RTF_PNULNONE
Definition: rtfkeywd.hxx:663
#define OOO_STRING_SVTOOLS_RTF_EXPND
Definition: rtfkeywd.hxx:147
#define OOO_STRING_SVTOOLS_RTF_ULLDASH
Definition: rtfkeywd.hxx:1047
#define OOO_STRING_SVTOOLS_RTF_PNDBNUMT
Definition: rtfkeywd.hxx:950
#define OOO_STRING_SVTOOLS_RTF_F
Definition: rtfkeywd.hxx:149
#define OOO_STRING_SVTOOLS_RTF_FFEXITMCR
Definition: rtfkeywd.hxx:828
#define OOO_STRING_SVTOOLS_RTF_TITLEPG
Definition: rtfkeywd.hxx:352
#define OOO_STRING_SVTOOLS_RTF_FVALIDDOS
Definition: rtfkeywd.hxx:569
#define OOO_STRING_SVTOOLS_RTF_PNULD
Definition: rtfkeywd.hxx:661
#define OOO_STRING_SVTOOLS_RTF_ATNICN
Definition: rtfkeywd.hxx:434
#define OOO_STRING_SVTOOLS_RTF_FLYPAGE
Definition: rtfkeywd.hxx:1106
#define OOO_STRING_SVTOOLS_RTF_PC
Definition: rtfkeywd.hxx:254
#define OOO_STRING_SVTOOLS_RTF_DPCOOFFSET
Definition: rtfkeywd.hxx:484
#define OOO_STRING_SVTOOLS_RTF_PGNCHOSUNG
Definition: rtfkeywd.hxx:931
#define OOO_STRING_SVTOOLS_RTF_DPCOTDOUBLE
Definition: rtfkeywd.hxx:486
#define OOO_STRING_SVTOOLS_RTF_HEADERYH
Definition: rtfkeywd.hxx:1085
#define OOO_STRING_SVTOOLS_RTF_FTNNCHOSUNG
Definition: rtfkeywd.hxx:849
#define OOO_STRING_SVTOOLS_RTF_OBJATTPH
Definition: rtfkeywd.hxx:916
#define OOO_STRING_SVTOOLS_RTF_AENDDOC
Definition: rtfkeywd.hxx:400
#define OOO_STRING_SVTOOLS_RTF_PNTEXT
Definition: rtfkeywd.hxx:655
#define OOO_STRING_SVTOOLS_RTF_CELL
Definition: rtfkeywd.hxx:80
#define OOO_STRING_SVTOOLS_RTF_SOUTLVL
Definition: rtfkeywd.hxx:1124
#define OOO_STRING_SVTOOLS_RTF_BRKFRM
Definition: rtfkeywd.hxx:446
#define OOO_STRING_SVTOOLS_RTF_PGHSXN
Definition: rtfkeywd.hxx:256
#define OOO_STRING_SVTOOLS_RTF_POSYIL
Definition: rtfkeywd.hxx:297
#define OOO_STRING_SVTOOLS_RTF_NOLINE
Definition: rtfkeywd.hxx:243
#define OOO_STRING_SVTOOLS_RTF_BRDRTHTNLG
Definition: rtfkeywd.hxx:756
#define OOO_STRING_SVTOOLS_RTF_PNNUMONCE
Definition: rtfkeywd.hxx:642
#define OOO_STRING_SVTOOLS_RTF_DPLINEDOT
Definition: rtfkeywd.hxx:512
#define OOO_STRING_SVTOOLS_RTF_SHPFBLWTXT
Definition: rtfkeywd.hxx:993
#define OOO_STRING_SVTOOLS_RTF_PGNDBNUMK
Definition: rtfkeywd.hxx:933
#define OOO_STRING_SVTOOLS_RTF_SHPBXCOLUMN
Definition: rtfkeywd.hxx:985
#define OOO_STRING_SVTOOLS_RTF_TRPADDFB
Definition: rtfkeywd.hxx:711
#define OOO_STRING_SVTOOLS_RTF_TX
Definition: rtfkeywd.hxx:369
#define OOO_STRING_SVTOOLS_RTF_AULD
Definition: rtfkeywd.hxx:440
#define OOO_STRING_SVTOOLS_RTF_PNDEC
Definition: rtfkeywd.hxx:630
#define OOO_STRING_SVTOOLS_RTF_FRMTXLRTB
Definition: rtfkeywd.hxx:1038
#define OOO_STRING_SVTOOLS_RTF_DPCOBESTFIT
Definition: rtfkeywd.hxx:475
#define OOO_STRING_SVTOOLS_RTF_CLVMRG
Definition: rtfkeywd.hxx:801
#define OOO_STRING_SVTOOLS_RTF_LEVELINDENT
Definition: rtfkeywd.hxx:876
#define OOO_STRING_SVTOOLS_RTF_FLDRSLT
Definition: rtfkeywd.hxx:162
#define OOO_STRING_SVTOOLS_RTF_SCAPS
Definition: rtfkeywd.hxx:332
#define OOO_STRING_SVTOOLS_RTF_VERTALC
Definition: rtfkeywd.hxx:381
#define OOO_STRING_SVTOOLS_RTF_SHPFHDR
Definition: rtfkeywd.hxx:994
#define OOO_STRING_SVTOOLS_RTF_AF
Definition: rtfkeywd.hxx:403
#define OOO_STRING_SVTOOLS_RTF_GRIDTBL
Definition: rtfkeywd.hxx:866
#define OOO_STRING_SVTOOLS_RTF_PNLVLCONT
Definition: rtfkeywd.hxx:641
#define OOO_STRING_SVTOOLS_RTF_PVMRG
Definition: rtfkeywd.hxx:301
#define OOO_STRING_SVTOOLS_RTF_DOBXPAGE
Definition: rtfkeywd.hxx:455
#define OOO_STRING_SVTOOLS_RTF_TIME
Definition: rtfkeywd.hxx:1016
#define OOO_STRING_SVTOOLS_RTF_OUTLINELEVEL
Definition: rtfkeywd.hxx:920
#define OOO_STRING_SVTOOLS_RTF_POSX
Definition: rtfkeywd.hxx:288
#define OOO_STRING_SVTOOLS_RTF_CB
Definition: rtfkeywd.hxx:78
#define OOO_STRING_SVTOOLS_RTF_SECTD
Definition: rtfkeywd.hxx:334
#define OOO_STRING_SVTOOLS_RTF_PGNHNSC
Definition: rtfkeywd.hxx:617
#define OOO_STRING_SVTOOLS_RTF_BIN
Definition: rtfkeywd.hxx:49
#define OOO_STRING_SVTOOLS_RTF_POSYOUT
Definition: rtfkeywd.hxx:971
#define OOO_STRING_SVTOOLS_RTF_PNORDT
Definition: rtfkeywd.hxx:644
#define OOO_STRING_SVTOOLS_RTF_CLPADFL
Definition: rtfkeywd.hxx:791
#define OOO_STRING_SVTOOLS_RTF_PNLCLTR
Definition: rtfkeywd.hxx:636
#define OOO_STRING_SVTOOLS_RTF_SUBJECT
Definition: rtfkeywd.hxx:343
#define OOO_STRING_SVTOOLS_RTF_OUTL
Definition: rtfkeywd.hxx:247
#define OOO_STRING_SVTOOLS_RTF_FLYOPAQUE
Definition: rtfkeywd.hxx:1094
#define OOO_STRING_SVTOOLS_RTF_MARGBSXN
Definition: rtfkeywd.hxx:228
#define OOO_STRING_SVTOOLS_RTF_HORZVERT
Definition: rtfkeywd.hxx:1065
#define OOO_STRING_SVTOOLS_RTF_DPLINECOB
Definition: rtfkeywd.hxx:506
#define OOO_STRING_SVTOOLS_RTF_CLPADT
Definition: rtfkeywd.hxx:788
#define OOO_STRING_SVTOOLS_RTF_VERTALB
Definition: rtfkeywd.hxx:380
#define OOO_STRING_SVTOOLS_RTF_COLS
Definition: rtfkeywd.hxx:116
#define OOO_STRING_SVTOOLS_RTF_WBMPLANES
Definition: rtfkeywd.hxx:386
#define OOO_STRING_SVTOOLS_RTF_DPAENDW
Definition: rtfkeywd.hxx:464
#define OOO_STRING_SVTOOLS_RTF_NOCOLBAL
Definition: rtfkeywd.hxx:585
#define OOO_STRING_SVTOOLS_RTF_REVDTTM
Definition: rtfkeywd.hxx:671
#define OOO_STRING_SVTOOLS_RTF_OBJH
Definition: rtfkeywd.hxx:600
#define OOO_STRING_SVTOOLS_RTF_FTNTJ
Definition: rtfkeywd.hxx:186
#define OOO_STRING_SVTOOLS_RTF_OLDASH
Definition: rtfkeywd.hxx:1136
#define OOO_STRING_SVTOOLS_RTF_LISTOVERRIDECOUNT
Definition: rtfkeywd.hxx:894
#define OOO_STRING_SVTOOLS_RTF_KEYCODE
Definition: rtfkeywd.hxx:205
#define OOO_STRING_SVTOOLS_RTF_PGNGBNUM
Definition: rtfkeywd.hxx:936
#define OOO_STRING_SVTOOLS_RTF_VERSION
Definition: rtfkeywd.hxx:379
#define OOO_STRING_SVTOOLS_RTF_PGNGBNUML
Definition: rtfkeywd.hxx:939
#define OOO_STRING_SVTOOLS_RTF_BRDRTH
Definition: rtfkeywd.hxx:71
#define OOO_STRING_SVTOOLS_RTF_CHBGDKDCROSS
Definition: rtfkeywd.hxx:776
#define OOO_STRING_SVTOOLS_RTF_FFDEFTEXT
Definition: rtfkeywd.hxx:826
#define OOO_STRING_SVTOOLS_RTF_SV
Definition: rtfkeywd.hxx:1127
#define OOO_STRING_SVTOOLS_RTF_BRDREMBOSS
Definition: rtfkeywd.hxx:750
#define OOO_STRING_SVTOOLS_RTF_LISTTABLE
Definition: rtfkeywd.hxx:900
#define OOO_STRING_SVTOOLS_RTF_LEVELNFC
Definition: rtfkeywd.hxx:879
#define OOO_STRING_SVTOOLS_RTF_AFTNNZODIACL
Definition: rtfkeywd.hxx:737
#define OOO_STRING_SVTOOLS_RTF_FFMAXLEN
Definition: rtfkeywd.hxx:834
#define OOO_STRING_SVTOOLS_RTF_CLPADFT
Definition: rtfkeywd.hxx:792
#define OOO_STRING_SVTOOLS_RTF_DPCOTTRIPLE
Definition: rtfkeywd.hxx:489
#define OOO_STRING_SVTOOLS_RTF_DPCOACCENT
Definition: rtfkeywd.hxx:474
#define OOO_STRING_SVTOOLS_RTF_SUPER
Definition: rtfkeywd.hxx:344
#define OOO_STRING_SVTOOLS_RTF_TRPADDFL
Definition: rtfkeywd.hxx:712
#define OOO_STRING_SVTOOLS_RTF_LISTOVERRIDESTART
Definition: rtfkeywd.hxx:896
#define OOO_STRING_SVTOOLS_RTF_BRDRB
Definition: rtfkeywd.hxx:58
#define OOO_STRING_SVTOOLS_RTF_PGBRDRL
Definition: rtfkeywd.hxx:926
#define OOO_STRING_SVTOOLS_RTF_OBJTIME
Definition: rtfkeywd.hxx:611
#define OOO_STRING_SVTOOLS_RTF_RXE
Definition: rtfkeywd.hxx:321
#define OOO_STRING_SVTOOLS_RTF_TRQL
Definition: rtfkeywd.hxx:366
#define OOO_STRING_SVTOOLS_RTF_DPCODCENTER
Definition: rtfkeywd.hxx:479
#define OOO_STRING_SVTOOLS_RTF_DELETED
Definition: rtfkeywd.hxx:129
#define OOO_STRING_SVTOOLS_RTF_REVPROP
Definition: rtfkeywd.hxx:314
#define OOO_STRING_SVTOOLS_RTF_OBJOCX
Definition: rtfkeywd.hxx:918
#define OOO_STRING_SVTOOLS_RTF_LANGFE
Definition: rtfkeywd.hxx:1056
#define OOO_STRING_SVTOOLS_RTF_ATNID
Definition: rtfkeywd.hxx:34
#define OOO_STRING_SVTOOLS_RTF_DPFILLFGPAL
Definition: rtfkeywd.hxx:502
#define OOO_STRING_SVTOOLS_RTF_SHPLID
Definition: rtfkeywd.hxx:998
#define OOO_STRING_SVTOOLS_RTF_AB
Definition: rtfkeywd.hxx:395
#define OOO_STRING_SVTOOLS_RTF_ASPALPHA
Definition: rtfkeywd.hxx:1073
#define OOO_STRING_SVTOOLS_RTF_PNGBNUML
Definition: rtfkeywd.hxx:956
#define OOO_STRING_SVTOOLS_RTF_OL
Definition: rtfkeywd.hxx:1131
#define OOO_STRING_SVTOOLS_RTF_TRQR
Definition: rtfkeywd.hxx:367
#define OOO_STRING_SVTOOLS_RTF_CLBGDCROSS
Definition: rtfkeywd.hxx:95
#define OOO_STRING_SVTOOLS_RTF_PGDSCNXT
Definition: rtfkeywd.hxx:1116
#define OOO_STRING_SVTOOLS_RTF_FONTEMB
Definition: rtfkeywd.hxx:545
#define OOO_STRING_SVTOOLS_RTF_OBJNAME
Definition: rtfkeywd.hxx:604
#define OOO_STRING_SVTOOLS_RTF_BRDRT
Definition: rtfkeywd.hxx:70
#define OOO_STRING_SVTOOLS_RTF_FNETWORK
Definition: rtfkeywd.hxx:544
#define OOO_STRING_SVTOOLS_RTF_HYPHEN
Definition: rtfkeywd.hxx:1117
#define OOO_STRING_SVTOOLS_RTF_AULNONE
Definition: rtfkeywd.hxx:442
#define OOO_STRING_SVTOOLS_RTF_CLTXBTLR
Definition: rtfkeywd.hxx:803
#define OOO_STRING_SVTOOLS_RTF_CHBGDCROSS
Definition: rtfkeywd.hxx:773
#define OOO_STRING_SVTOOLS_RTF_NEXTCSET
Definition: rtfkeywd.hxx:238
#define OOO_STRING_SVTOOLS_RTF_PN
Definition: rtfkeywd.hxx:624
#define OOO_STRING_SVTOOLS_RTF_FFFORMAT
Definition: rtfkeywd.hxx:829
#define OOO_STRING_SVTOOLS_RTF_PNAIUEOD
Definition: rtfkeywd.hxx:945
#define OOO_STRING_SVTOOLS_RTF_HYPHPAR
Definition: rtfkeywd.hxx:576
#define OOO_STRING_SVTOOLS_RTF_AEXPND
Definition: rtfkeywd.hxx:402
#define OOO_STRING_SVTOOLS_RTF_FLYHORZ
Definition: rtfkeywd.hxx:1098
#define OOO_STRING_SVTOOLS_RTF_FRMTXTBRLV
Definition: rtfkeywd.hxx:1042
#define OOO_STRING_SVTOOLS_RTF_KEEPN
Definition: rtfkeywd.hxx:203
#define OOO_STRING_SVTOOLS_RTF_DOCTYPE
Definition: rtfkeywd.hxx:817
#define OOO_STRING_SVTOOLS_RTF_LEVELOLD
Definition: rtfkeywd.hxx:882
#define OOO_STRING_SVTOOLS_RTF_CLPADFR
Definition: rtfkeywd.hxx:794
#define OOO_STRING_SVTOOLS_RTF_BGBDIAG
Definition: rtfkeywd.hxx:37
#define OOO_STRING_SVTOOLS_RTF_PGNLCLTR
Definition: rtfkeywd.hxx:259
#define OOO_STRING_SVTOOLS_RTF_TLHYPH
Definition: rtfkeywd.hxx:355
#define OOO_STRING_SVTOOLS_RTF_ULTHDASHDD
Definition: rtfkeywd.hxx:1050
#define OOO_STRING_SVTOOLS_RTF_FOOTERYH
Definition: rtfkeywd.hxx:1086
#define OOO_STRING_SVTOOLS_RTF_CHCBPAT
Definition: rtfkeywd.hxx:784
#define OOO_STRING_SVTOOLS_RTF_DPFILLBGGRAY
Definition: rtfkeywd.hxx:496
#define OOO_STRING_SVTOOLS_RTF_DPASTARTHOL
Definition: rtfkeywd.hxx:468
#define OOO_STRING_SVTOOLS_RTF_SPRSSPBF
Definition: rtfkeywd.hxx:693
#define OOO_STRING_SVTOOLS_RTF_PICSCALED
Definition: rtfkeywd.hxx:278
#define OOO_STRING_SVTOOLS_RTF_DPAENDL
Definition: rtfkeywd.hxx:462
#define OOO_STRING_SVTOOLS_RTF_ANSICPG
Definition: rtfkeywd.hxx:739
#define OOO_STRING_SVTOOLS_RTF_PGDSCUSE
Definition: rtfkeywd.hxx:1115
#define OOO_STRING_SVTOOLS_RTF_ILVL
Definition: rtfkeywd.hxx:872
#define OOO_STRING_SVTOOLS_RTF_FFHPS
Definition: rtfkeywd.hxx:832
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTU
Definition: rtfkeywd.hxx:1101
#define OOO_STRING_SVTOOLS_RTF_COLSR
Definition: rtfkeywd.hxx:117
#define OOO_STRING_SVTOOLS_RTF_NOSUPERSUB
Definition: rtfkeywd.hxx:244
#define OOO_STRING_SVTOOLS_RTF_ULTHD
Definition: rtfkeywd.hxx:1045
#define OOO_STRING_SVTOOLS_RTF_SB
Definition: rtfkeywd.hxx:324
#define OOO_STRING_SVTOOLS_RTF_GUTTER
Definition: rtfkeywd.hxx:188
#define OOO_STRING_SVTOOLS_RTF_EMFBLIP
Definition: rtfkeywd.hxx:821
#define OOO_STRING_SVTOOLS_RTF_DPPOLYCOUNT
Definition: rtfkeywd.hxx:518
#define OOO_STRING_SVTOOLS_RTF_BDBFHDR
Definition: rtfkeywd.hxx:741
#define OOO_STRING_SVTOOLS_RTF_CLBGDKVERT
Definition: rtfkeywd.hxx:101
#define OOO_STRING_SVTOOLS_RTF_MARGL
Definition: rtfkeywd.hxx:229
#define OOO_STRING_SVTOOLS_RTF_CATEGORY
Definition: rtfkeywd.hxx:768
#define OOO_STRING_SVTOOLS_RTF_RQUOTE
Definition: rtfkeywd.hxx:319
#define OOO_STRING_SVTOOLS_RTF_SHPRIGHT
Definition: rtfkeywd.hxx:1001
#define OOO_STRING_SVTOOLS_RTF_SA
Definition: rtfkeywd.hxx:323
#define OOO_STRING_SVTOOLS_RTF_PNDBNUMD
Definition: rtfkeywd.hxx:947
#define OOO_STRING_SVTOOLS_RTF_FTNBJ
Definition: rtfkeywd.hxx:180
#define OOO_STRING_SVTOOLS_RTF_PNRDATE
Definition: rtfkeywd.hxx:958
#define OOO_STRING_SVTOOLS_RTF_DATE
Definition: rtfkeywd.hxx:808
#define OOO_STRING_SVTOOLS_RTF_FLDLOCK
Definition: rtfkeywd.hxx:160
#define OOO_STRING_SVTOOLS_RTF_ACCCOMMA
Definition: rtfkeywd.hxx:1061
#define OOO_STRING_SVTOOLS_RTF_DPCODBOTTOM
Definition: rtfkeywd.hxx:478
#define OOO_STRING_SVTOOLS_RTF_EMSPACE
Definition: rtfkeywd.hxx:536
#define OOO_STRING_SVTOOLS_RTF_LEVELLEGAL
Definition: rtfkeywd.hxx:878
#define OOO_STRING_SVTOOLS_RTF_FTNIL
Definition: rtfkeywd.hxx:553
#define OOO_STRING_SVTOOLS_RTF_FLDEDIT
Definition: rtfkeywd.hxx:158
#define OOO_STRING_SVTOOLS_RTF_ACAPS
Definition: rtfkeywd.hxx:396
#define OOO_STRING_SVTOOLS_RTF_SOFTCOL
Definition: rtfkeywd.hxx:689
#define OOO_STRING_SVTOOLS_RTF_OLNONE
Definition: rtfkeywd.hxx:1134
#define OOO_STRING_SVTOOLS_RTF_AFTNNZODIAC
Definition: rtfkeywd.hxx:735
#define OOO_STRING_SVTOOLS_RTF_SHPBXMARGIN
Definition: rtfkeywd.hxx:986
#define OOO_STRING_SVTOOLS_RTF_CLVMGF
Definition: rtfkeywd.hxx:800
#define OOO_STRING_SVTOOLS_RTF_ABSH
Definition: rtfkeywd.hxx:28
#define OOO_STRING_SVTOOLS_RTF_ABSLOCK
Definition: rtfkeywd.hxx:721
#define OOO_STRING_SVTOOLS_RTF_DGMARGIN
Definition: rtfkeywd.hxx:815
#define OOO_STRING_SVTOOLS_RTF_DPLINEGRAY
Definition: rtfkeywd.hxx:513
#define OOO_STRING_SVTOOLS_RTF_PHCOL
Definition: rtfkeywd.hxx:269
#define OOO_STRING_SVTOOLS_RTF_CLBGDKDCROSS
Definition: rtfkeywd.hxx:98
#define OOO_STRING_SVTOOLS_RTF_OBJCROPB
Definition: rtfkeywd.hxx:593
#define OOO_STRING_SVTOOLS_RTF_GRFALIGNH
Definition: rtfkeywd.hxx:1077
#define OOO_STRING_SVTOOLS_RTF_NEXTFILE
Definition: rtfkeywd.hxx:239
#define OOO_STRING_SVTOOLS_RTF_DPLINEW
Definition: rtfkeywd.hxx:517
#define OOO_STRING_SVTOOLS_RTF_LEVELNORESTART
Definition: rtfkeywd.hxx:880
#define OOO_STRING_SVTOOLS_RTF_TRBRDRT
Definition: rtfkeywd.hxx:703
#define OOO_STRING_SVTOOLS_RTF_DPELLIPSE
Definition: rtfkeywd.hxx:491
#define OOO_STRING_SVTOOLS_RTF_ENSPACE
Definition: rtfkeywd.hxx:537
#define OOO_STRING_SVTOOLS_RTF_DOLOCK
Definition: rtfkeywd.hxx:460
#define OOO_STRING_SVTOOLS_RTF_ENDNOTES
Definition: rtfkeywd.hxx:146
#define OOO_STRING_SVTOOLS_RTF_FILETBL
Definition: rtfkeywd.hxx:542
#define OOO_STRING_SVTOOLS_RTF_SEC
Definition: rtfkeywd.hxx:685
#define OOO_STRING_SVTOOLS_RTF_PNLVLBODY
Definition: rtfkeywd.hxx:640
#define OOO_STRING_SVTOOLS_RTF_DPLINEHOLLOW
Definition: rtfkeywd.hxx:514
#define OOO_STRING_SVTOOLS_RTF_LIST
Definition: rtfkeywd.hxx:889
#define OOO_STRING_SVTOOLS_RTF_LEVELNUMBERS
Definition: rtfkeywd.hxx:881
#define OOO_STRING_SVTOOLS_RTF_FAHANG
Definition: rtfkeywd.hxx:1066
#define OOO_STRING_SVTOOLS_RTF_QC
Definition: rtfkeywd.hxx:304
#define OOO_STRING_SVTOOLS_RTF_SL
Definition: rtfkeywd.hxx:338
#define OOO_STRING_SVTOOLS_RTF_RED
Definition: rtfkeywd.hxx:310
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTR
Definition: rtfkeywd.hxx:1100
#define OOO_STRING_SVTOOLS_RTF_FRMTXLRTBV
Definition: rtfkeywd.hxx:1041
#define OOO_STRING_SVTOOLS_RTF_OPERATOR
Definition: rtfkeywd.hxx:246
#define OOO_STRING_SVTOOLS_RTF_PNHANG
Definition: rtfkeywd.hxx:633
#define OOO_STRING_SVTOOLS_RTF_SECTDEFAULTCL
Definition: rtfkeywd.hxx:978
#define OOO_STRING_SVTOOLS_RTF_MARGTSXN
Definition: rtfkeywd.hxx:235
#define OOO_STRING_SVTOOLS_RTF_OBJALIGN
Definition: rtfkeywd.hxx:590
#define OOO_STRING_SVTOOLS_RTF_SUBFONTBYSIZE
Definition: rtfkeywd.hxx:1014
#define OOO_STRING_SVTOOLS_RTF_VERTALJ
Definition: rtfkeywd.hxx:382
#define OOO_STRING_SVTOOLS_RTF_BGDKBDIAG
Definition: rtfkeywd.hxx:40
#define OOO_STRING_SVTOOLS_RTF_IMPR
Definition: rtfkeywd.hxx:873
#define OOO_STRING_SVTOOLS_RTF_BKMKKEY
Definition: rtfkeywd.hxx:1090
#define OOO_STRING_SVTOOLS_RTF_VIEWZK
Definition: rtfkeywd.hxx:1031
#define OOO_STRING_SVTOOLS_RTF_LTRPAR
Definition: rtfkeywd.hxx:582
#define OOO_STRING_SVTOOLS_RTF_HYPHTRAIL
Definition: rtfkeywd.hxx:1119
#define OOO_STRING_SVTOOLS_RTF_BRDRW
Definition: rtfkeywd.hxx:72
#define OOO_STRING_SVTOOLS_RTF_PNACROSS
Definition: rtfkeywd.hxx:625
#define OOO_STRING_SVTOOLS_RTF_DPAENDHOL
Definition: rtfkeywd.hxx:461
#define OOO_STRING_SVTOOLS_RTF_MIN
Definition: rtfkeywd.hxx:236
#define OOO_STRING_SVTOOLS_RTF_PGBRDRFOOT
Definition: rtfkeywd.hxx:924
#define OOO_STRING_SVTOOLS_RTF_GUTTERSXN
Definition: rtfkeywd.hxx:189
#define OOO_STRING_SVTOOLS_RTF_SOFTPAGE
Definition: rtfkeywd.hxx:692
#define OOO_STRING_SVTOOLS_RTF_OBJEMB
Definition: rtfkeywd.hxx:599
#define OOO_STRING_SVTOOLS_RTF_OBJTRANSY
Definition: rtfkeywd.hxx:612
#define OOO_STRING_SVTOOLS_RTF_CHFTNSEP
Definition: rtfkeywd.hxx:89
#define OOO_STRING_SVTOOLS_RTF_FTNNZODIACL
Definition: rtfkeywd.hxx:863
#define OOO_STRING_SVTOOLS_RTF_B
Definition: rtfkeywd.hxx:36
#define OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMD
Definition: rtfkeywd.hxx:732
#define OOO_STRING_SVTOOLS_RTF_BACKGROUND
Definition: rtfkeywd.hxx:740
#define OOO_STRING_SVTOOLS_RTF_S
Definition: rtfkeywd.hxx:322
#define OOO_STRING_SVTOOLS_RTF_BRDRHAIR
Definition: rtfkeywd.hxx:65
#define OOO_STRING_SVTOOLS_RTF_CHFTN
Definition: rtfkeywd.hxx:88
#define OOO_STRING_SVTOOLS_RTF_KEYWORDS
Definition: rtfkeywd.hxx:206
#define OOO_STRING_SVTOOLS_RTF_ULDASH
Definition: rtfkeywd.hxx:1020
#define OOO_STRING_SVTOOLS_RTF_PNTXTB
Definition: rtfkeywd.hxx:657
#define OOO_STRING_SVTOOLS_RTF_DOCTEMP
Definition: rtfkeywd.hxx:135
#define OOO_STRING_SVTOOLS_RTF_DOBXMARGIN
Definition: rtfkeywd.hxx:454
#define OOO_STRING_SVTOOLS_RTF_OLTHLDASH
Definition: rtfkeywd.hxx:1145
#define OOO_STRING_SVTOOLS_RTF_DPPOLYLINE
Definition: rtfkeywd.hxx:520
#define OOO_STRING_SVTOOLS_RTF_FLYMAINCNT
Definition: rtfkeywd.hxx:1096
#define OOO_STRING_SVTOOLS_RTF_WIDCTLPAR
Definition: rtfkeywd.hxx:1032
#define OOO_STRING_SVTOOLS_RTF_AI
Definition: rtfkeywd.hxx:425
#define OOO_STRING_SVTOOLS_RTF_DBCH
Definition: rtfkeywd.hxx:1055
#define OOO_STRING_SVTOOLS_RTF_SHPBYMARGIN
Definition: rtfkeywd.hxx:989
#define OOO_STRING_SVTOOLS_RTF_TC
Definition: rtfkeywd.hxx:347
#define OOO_STRING_SVTOOLS_RTF_FTNRSTCONT
Definition: rtfkeywd.hxx:566
#define OOO_STRING_SVTOOLS_RTF_FAROMAN
Definition: rtfkeywd.hxx:1069
#define OOO_STRING_SVTOOLS_RTF_FFL
Definition: rtfkeywd.hxx:833
#define OOO_STRING_SVTOOLS_RTF_OBJSCALEY
Definition: rtfkeywd.hxx:607
#define OOO_STRING_SVTOOLS_RTF_SBYS
Definition: rtfkeywd.hxx:331
#define OOO_STRING_SVTOOLS_RTF_PNQR
Definition: rtfkeywd.hxx:648
#define OOO_STRING_SVTOOLS_RTF_FACINGP
Definition: rtfkeywd.hxx:150
#define OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMK
Definition: rtfkeywd.hxx:728
#define OOO_STRING_SVTOOLS_RTF_CLPADB
Definition: rtfkeywd.hxx:789
#define OOO_STRING_SVTOOLS_RTF_DPARCFLIPX
Definition: rtfkeywd.hxx:466
#define OOO_STRING_SVTOOLS_RTF_KEEP
Definition: rtfkeywd.hxx:202
#define OOO_STRING_SVTOOLS_RTF_DPCOLENGTH
Definition: rtfkeywd.hxx:481
#define OOO_STRING_SVTOOLS_RTF_PNDBNUMK
Definition: rtfkeywd.hxx:948
#define OOO_STRING_SVTOOLS_RTF_ACCNONE
Definition: rtfkeywd.hxx:1059
#define OOO_STRING_SVTOOLS_RTF_CHPGN
Definition: rtfkeywd.hxx:91
#define OOO_STRING_SVTOOLS_RTF_MARGR
Definition: rtfkeywd.hxx:232
#define OOO_STRING_SVTOOLS_RTF_DPLINECOG
Definition: rtfkeywd.hxx:507
#define OOO_STRING_SVTOOLS_RTF_NOULTRLSPC
Definition: rtfkeywd.hxx:914
#define OOO_STRING_SVTOOLS_RTF_AUTHOR
Definition: rtfkeywd.hxx:35
#define OOO_STRING_SVTOOLS_RTF_REVAUTHDEL
Definition: rtfkeywd.hxx:975
#define OOO_STRING_SVTOOLS_RTF_UPDNPROP
Definition: rtfkeywd.hxx:1088
#define OOO_STRING_SVTOOLS_RTF_LEVELFOLLOW
Definition: rtfkeywd.hxx:875
#define OOO_STRING_SVTOOLS_RTF_RTF
Definition: rtfkeywd.hxx:320
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNLG
Definition: rtfkeywd.hxx:762
#define OOO_STRING_SVTOOLS_RTF_BGDCROSS
Definition: rtfkeywd.hxx:39
#define OOO_STRING_SVTOOLS_RTF_PGNSTARTS
Definition: rtfkeywd.hxx:263
#define OOO_STRING_SVTOOLS_RTF_TLTH
Definition: rtfkeywd.hxx:356
#define OOO_STRING_SVTOOLS_RTF_EMDASH
Definition: rtfkeywd.hxx:142
#define OOO_STRING_SVTOOLS_RTF_PNULDB
Definition: rtfkeywd.hxx:662
#define OOO_STRING_SVTOOLS_RTF_BGDKHORIZ
Definition: rtfkeywd.hxx:44
#define OOO_STRING_SVTOOLS_RTF_LDBLQUOTE
Definition: rtfkeywd.hxx:209
#define OOO_STRING_SVTOOLS_RTF_PNSTART
Definition: rtfkeywd.hxx:653
#define OOO_STRING_SVTOOLS_RTF_PVPARA
Definition: rtfkeywd.hxx:302
#define OOO_STRING_SVTOOLS_RTF_PGNDBNUMT
Definition: rtfkeywd.hxx:934
#define OOO_STRING_SVTOOLS_RTF_NOWRAP
Definition: rtfkeywd.hxx:245
#define OOO_STRING_SVTOOLS_RTF_DPPOLYGON
Definition: rtfkeywd.hxx:519
#define OOO_STRING_SVTOOLS_RTF_LINEBETCOL
Definition: rtfkeywd.hxx:214
#define OOO_STRING_SVTOOLS_RTF_CREATIM
Definition: rtfkeywd.hxx:123
#define OOO_STRING_SVTOOLS_RTF_FOOTER
Definition: rtfkeywd.hxx:167
#define OOO_STRING_SVTOOLS_RTF_PNRPNBR
Definition: rtfkeywd.hxx:961
#define OOO_STRING_SVTOOLS_RTF_DODHGT
Definition: rtfkeywd.hxx:459
#define OOO_STRING_SVTOOLS_RTF_DFRAUTH
Definition: rtfkeywd.hxx:810
#define OOO_STRING_SVTOOLS_RTF_CF
Definition: rtfkeywd.hxx:82
#define OOO_STRING_SVTOOLS_RTF_PICBPP
Definition: rtfkeywd.hxx:623
#define OOO_STRING_SVTOOLS_RTF_CLMRG
Definition: rtfkeywd.hxx:112
#define OOO_STRING_SVTOOLS_RTF_RTLPAR
Definition: rtfkeywd.hxx:682
#define OOO_STRING_SVTOOLS_RTF_FN
Definition: rtfkeywd.hxx:164
#define OOO_STRING_SVTOOLS_RTF_HIGHLIGHT
Definition: rtfkeywd.hxx:867
#define OOO_STRING_SVTOOLS_RTF_TQC
Definition: rtfkeywd.hxx:358
#define OOO_STRING_SVTOOLS_RTF_HEADER
Definition: rtfkeywd.hxx:190
#define OOO_STRING_SVTOOLS_RTF_ULDASHD
Definition: rtfkeywd.hxx:1021
#define OOO_STRING_SVTOOLS_RTF_FFNAME
Definition: rtfkeywd.hxx:835
#define OOO_STRING_SVTOOLS_RTF_REVISIONS
Definition: rtfkeywd.hxx:313
#define OOO_STRING_SVTOOLS_RTF_LOCH
Definition: rtfkeywd.hxx:1053
#define OOO_STRING_SVTOOLS_RTF_FORMPROT
Definition: rtfkeywd.hxx:548
#define OOO_STRING_SVTOOLS_RTF_BRDRCF
Definition: rtfkeywd.hxx:61
#define OOO_STRING_SVTOOLS_RTF_KERNING
Definition: rtfkeywd.hxx:204
#define OOO_STRING_SVTOOLS_RTF_REVPROT
Definition: rtfkeywd.hxx:672
#define OOO_STRING_SVTOOLS_RTF_BRDRWAVYDB
Definition: rtfkeywd.hxx:767
#define OOO_STRING_SVTOOLS_RTF_ANNOTPROT
Definition: rtfkeywd.hxx:428
#define OOO_STRING_SVTOOLS_RTF_BLIPUID
Definition: rtfkeywd.hxx:743
#define OOO_STRING_SVTOOLS_RTF_DPFILLBGCR
Definition: rtfkeywd.hxx:495
#define OOO_STRING_SVTOOLS_RTF_MAC
Definition: rtfkeywd.hxx:224
#define OOO_STRING_SVTOOLS_RTF_PNTXTA
Definition: rtfkeywd.hxx:656
#define OOO_STRING_SVTOOLS_RTF_TRUNCATEFONTHEIGHT
Definition: rtfkeywd.hxx:1017
#define OOO_STRING_SVTOOLS_RTF_DPLINEDASH
Definition: rtfkeywd.hxx:511
#define OOO_STRING_SVTOOLS_RTF_CLMGF
Definition: rtfkeywd.hxx:111
#define OOO_STRING_SVTOOLS_RTF_AFTNNDBAR
Definition: rtfkeywd.hxx:725
#define OOO_STRING_SVTOOLS_RTF_FLYANCHOR
Definition: rtfkeywd.hxx:1103
#define OOO_STRING_SVTOOLS_RTF_ULTHDASH
Definition: rtfkeywd.hxx:1046
#define OOO_STRING_SVTOOLS_RTF_HEXCHAR
Definition: rtfkeywd.hxx:24
#define OOO_STRING_SVTOOLS_RTF_REVDTTMDEL
Definition: rtfkeywd.hxx:976
#define OOO_STRING_SVTOOLS_RTF_FI
Definition: rtfkeywd.hxx:155
#define OOO_STRING_SVTOOLS_RTF_DFRXST
Definition: rtfkeywd.hxx:814
#define OOO_STRING_SVTOOLS_RTF_CLSHDNG
Definition: rtfkeywd.hxx:113
#define OOO_STRING_SVTOOLS_RTF_CHTIME
Definition: rtfkeywd.hxx:92
#define OOO_STRING_SVTOOLS_RTF_RESULT
Definition: rtfkeywd.hxx:669
#define OOO_STRING_SVTOOLS_RTF_XE
Definition: rtfkeywd.hxx:390
#define OOO_STRING_SVTOOLS_RTF_FTNNGANADA
Definition: rtfkeywd.hxx:856
#define OOO_STRING_SVTOOLS_RTF_PNLCRM
Definition: rtfkeywd.hxx:637
#define OOO_STRING_SVTOOLS_RTF_FTNNDBNUMT
Definition: rtfkeywd.hxx:855
#define OOO_STRING_SVTOOLS_RTF_ADEFLANG
Definition: rtfkeywd.hxx:1057
#define OOO_STRING_SVTOOLS_RTF_DPROUNDR
Definition: rtfkeywd.hxx:524
#define OOO_STRING_SVTOOLS_RTF_OTBLRUL
Definition: rtfkeywd.hxx:615
#define OOO_STRING_SVTOOLS_RTF_POSYB
Definition: rtfkeywd.hxx:295
#define OOO_STRING_SVTOOLS_RTF_ABSW
Definition: rtfkeywd.hxx:29
#define OOO_STRING_SVTOOLS_RTF_PVPG
Definition: rtfkeywd.hxx:303
#define OOO_STRING_SVTOOLS_RTF_PGNLCRM
Definition: rtfkeywd.hxx:260
#define OOO_STRING_SVTOOLS_RTF_BLIPUPI
Definition: rtfkeywd.hxx:744
#define OOO_STRING_SVTOOLS_RTF_SHAD
Definition: rtfkeywd.hxx:335
#define OOO_STRING_SVTOOLS_RTF_RTLDOC
Definition: rtfkeywd.hxx:680
#define OOO_STRING_SVTOOLS_RTF_PNLVL
Definition: rtfkeywd.hxx:638
#define OOO_STRING_SVTOOLS_RTF_BRDROUTSET
Definition: rtfkeywd.hxx:752
#define OOO_STRING_SVTOOLS_RTF_FTNNDBAR
Definition: rtfkeywd.hxx:851
#define OOO_STRING_SVTOOLS_RTF_BRDRS
Definition: rtfkeywd.hxx:68
#define OOO_STRING_SVTOOLS_RTF_DEFFORMAT
Definition: rtfkeywd.hxx:126
#define OOO_STRING_SVTOOLS_RTF_LINKSELF
Definition: rtfkeywd.hxx:577
#define OOO_STRING_SVTOOLS_RTF_FROMAN
Definition: rtfkeywd.hxx:175
#define OOO_STRING_SVTOOLS_RTF_AFTNNCHI
Definition: rtfkeywd.hxx:410
#define OOO_STRING_SVTOOLS_RTF_FFOWNSTAT
Definition: rtfkeywd.hxx:837
#define OOO_STRING_SVTOOLS_RTF_AULW
Definition: rtfkeywd.hxx:443
#define OOO_STRING_SVTOOLS_RTF_FFTYPETXT
Definition: rtfkeywd.hxx:844
#define OOO_STRING_SVTOOLS_RTF_SWPBDR
Definition: rtfkeywd.hxx:696
#define OOO_STRING_SVTOOLS_RTF_FTNNRUC
Definition: rtfkeywd.hxx:559
#define OOO_STRING_SVTOOLS_RTF_LYTPRTMET
Definition: rtfkeywd.hxx:905
#define OOO_STRING_SVTOOLS_RTF_OBJDATA
Definition: rtfkeywd.hxx:597
#define OOO_STRING_SVTOOLS_RTF_WINDOWCAPTION
Definition: rtfkeywd.hxx:1033
#define OOO_STRING_SVTOOLS_RTF_DPY
Definition: rtfkeywd.hxx:533
#define OOO_STRING_SVTOOLS_RTF_ASHAD
Definition: rtfkeywd.hxx:431
#define OOO_STRING_SVTOOLS_RTF_FS
Definition: rtfkeywd.hxx:176
#define OOO_STRING_SVTOOLS_RTF_DPSHADY
Definition: rtfkeywd.hxx:527
#define OOO_STRING_SVTOOLS_RTF_PRINTIM
Definition: rtfkeywd.hxx:299
#define OOO_STRING_SVTOOLS_RTF_FTNSTART
Definition: rtfkeywd.hxx:185
#define OOO_STRING_SVTOOLS_RTF_PNRXST
Definition: rtfkeywd.hxx:965
#define OOO_STRING_SVTOOLS_RTF_DXFRTEXT
Definition: rtfkeywd.hxx:139
#define OOO_STRING_SVTOOLS_RTF_CRAUTH
Definition: rtfkeywd.hxx:806
#define OOO_STRING_SVTOOLS_RTF_LEVELTEXT
Definition: rtfkeywd.hxx:887
#define OOO_STRING_SVTOOLS_RTF_CLTXTBRL
Definition: rtfkeywd.hxx:796
#define OOO_STRING_SVTOOLS_RTF_RIN
Definition: rtfkeywd.hxx:317
#define OOO_STRING_SVTOOLS_RTF_DIBITMAP
Definition: rtfkeywd.hxx:132
#define OOO_STRING_SVTOOLS_RTF_IXE
Definition: rtfkeywd.hxx:201
#define OOO_STRING_SVTOOLS_RTF_SHDWSTYLE
Definition: rtfkeywd.hxx:1110
#define OOO_STRING_SVTOOLS_RTF_WBITMAP
Definition: rtfkeywd.hxx:384
#define OOO_STRING_SVTOOLS_RTF_UC
Definition: rtfkeywd.hxx:1018
#define OOO_STRING_SVTOOLS_RTF_LISTTEXT
Definition: rtfkeywd.hxx:902
#define OOO_STRING_SVTOOLS_RTF_TRPADDB
Definition: rtfkeywd.hxx:707
#define OOO_STRING_SVTOOLS_RTF_PGNHN
Definition: rtfkeywd.hxx:616
#define OOO_STRING_SVTOOLS_RTF_FROMTEXT
Definition: rtfkeywd.hxx:848
#define OOO_STRING_SVTOOLS_RTF_TRANSMF
Definition: rtfkeywd.hxx:698
#define OOO_STRING_SVTOOLS_RTF_OBJICEMB
Definition: rtfkeywd.hxx:601
#define OOO_STRING_SVTOOLS_RTF_CS
Definition: rtfkeywd.hxx:449
#define OOO_STRING_SVTOOLS_RTF_AFTNNGBNUML
Definition: rtfkeywd.hxx:734
#define OOO_STRING_SVTOOLS_RTF_FDECOR
Definition: rtfkeywd.hxx:154
#define OOO_STRING_SVTOOLS_RTF_DPYSIZE
Definition: rtfkeywd.hxx:534
#define OOO_STRING_SVTOOLS_RTF_SP
Definition: rtfkeywd.hxx:1128
#define OOO_STRING_SVTOOLS_RTF_FRELATIVE
Definition: rtfkeywd.hxx:551
#define OOO_STRING_SVTOOLS_RTF_LYTEXCTTP
Definition: rtfkeywd.hxx:904
#define OOO_STRING_SVTOOLS_RTF_PGNX
Definition: rtfkeywd.hxx:266
#define OOO_STRING_SVTOOLS_RTF_AFTNNAR
Definition: rtfkeywd.hxx:408
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNSG
Definition: rtfkeywd.hxx:764
#define OOO_STRING_SVTOOLS_RTF_PNF
Definition: rtfkeywd.hxx:631
#define OOO_STRING_SVTOOLS_RTF_ULD
Definition: rtfkeywd.hxx:372
#define OOO_STRING_SVTOOLS_RTF_FONTFILE
Definition: rtfkeywd.hxx:546
#define OOO_STRING_SVTOOLS_RTF_CTRL
Definition: rtfkeywd.hxx:124
#define OOO_STRING_SVTOOLS_RTF_SUB
Definition: rtfkeywd.hxx:342
#define OOO_STRING_SVTOOLS_RTF_SECTEXPAND
Definition: rtfkeywd.hxx:979
#define OOO_STRING_SVTOOLS_RTF_FOOTERL
Definition: rtfkeywd.hxx:169
#define OOO_STRING_SVTOOLS_RTF_LEVELSTARTAT
Definition: rtfkeywd.hxx:886
#define OOO_STRING_SVTOOLS_RTF_AFTNSTART
Definition: rtfkeywd.hxx:423
#define OOO_STRING_SVTOOLS_RTF_CLTXLRTB
Definition: rtfkeywd.hxx:795
#define OOO_STRING_SVTOOLS_RTF_SPRSLNSP
Definition: rtfkeywd.hxx:1009
#define OOO_STRING_SVTOOLS_RTF_SHPGRP
Definition: rtfkeywd.hxx:995
#define OOO_STRING_SVTOOLS_RTF_DPCOMINUSY
Definition: rtfkeywd.hxx:483
#define OOO_STRING_SVTOOLS_RTF_FRMTXTBRL
Definition: rtfkeywd.hxx:1039
#define OOO_STRING_SVTOOLS_RTF_SHP
Definition: rtfkeywd.hxx:1125
#define OOO_STRING_SVTOOLS_RTF_ENDDOC
Definition: rtfkeywd.hxx:144
#define OOO_STRING_SVTOOLS_RTF_FFHASLISTBOX
Definition: rtfkeywd.hxx:830
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTW
Definition: rtfkeywd.hxx:1102
#define OOO_STRING_SVTOOLS_RTF_TLEQ
Definition: rtfkeywd.hxx:354
#define OOO_STRING_SVTOOLS_RTF_LINEX
Definition: rtfkeywd.hxx:221
#define OOO_STRING_SVTOOLS_RTF_PNSECLVL
Definition: rtfkeywd.hxx:651
#define OOO_STRING_SVTOOLS_RTF_GCW
Definition: rtfkeywd.hxx:865
#define OOO_STRING_SVTOOLS_RTF_CLBRDRR
Definition: rtfkeywd.hxx:107
#define OOO_STRING_SVTOOLS_RTF_WRAPTRSP
Definition: rtfkeywd.hxx:715
#define OOO_STRING_SVTOOLS_RTF_CVMME
Definition: rtfkeywd.hxx:450
#define OOO_STRING_SVTOOLS_RTF_DPFILLBGCG
Definition: rtfkeywd.hxx:494
#define OOO_STRING_SVTOOLS_RTF_PNZODIACD
Definition: rtfkeywd.hxx:967
#define OOO_STRING_SVTOOLS_RTF_OLWAVE
Definition: rtfkeywd.hxx:1140
#define OOO_STRING_SVTOOLS_RTF_DFRDATE
Definition: rtfkeywd.hxx:811
#define OOO_STRING_SVTOOLS_RTF_STRIKE
Definition: rtfkeywd.hxx:340
#define OOO_STRING_SVTOOLS_RTF_PNGBNUMD
Definition: rtfkeywd.hxx:954
#define OOO_STRING_SVTOOLS_RTF_OBJLOCK
Definition: rtfkeywd.hxx:603
#define OOO_STRING_SVTOOLS_RTF_DPTXBXTEXT
Definition: rtfkeywd.hxx:530
#define OOO_STRING_SVTOOLS_RTF_CLBGFDIAG
Definition: rtfkeywd.hxx:102
#define OOO_STRING_SVTOOLS_RTF_DOCVAR
Definition: rtfkeywd.hxx:818
#define OOO_STRING_SVTOOLS_RTF_TRBRDRL
Definition: rtfkeywd.hxx:701
#define OOO_STRING_SVTOOLS_RTF_DPPTX
Definition: rtfkeywd.hxx:521
#define OOO_STRING_SVTOOLS_RTF_FRMTXBTLR
Definition: rtfkeywd.hxx:1040
#define OOO_STRING_SVTOOLS_RTF_OBJCROPL
Definition: rtfkeywd.hxx:594
#define OOO_STRING_SVTOOLS_RTF_RSLTBMP
Definition: rtfkeywd.hxx:674
#define OOO_STRING_SVTOOLS_RTF_RTLSECT
Definition: rtfkeywd.hxx:684
#define OOO_STRING_SVTOOLS_RTF_DPASTARTSOL
Definition: rtfkeywd.hxx:470
#define OOO_STRING_SVTOOLS_RTF_PICWGOAL
Definition: rtfkeywd.hxx:283
#define OOO_STRING_SVTOOLS_RTF_PNRSTOP
Definition: rtfkeywd.hxx:964
#define OOO_STRING_SVTOOLS_RTF_ZWNJ
Definition: rtfkeywd.hxx:718
#define OOO_STRING_SVTOOLS_RTF_CLVERTALC
Definition: rtfkeywd.hxx:798
#define OOO_STRING_SVTOOLS_RTF_HEADERL
Definition: rtfkeywd.hxx:192
#define OOO_STRING_SVTOOLS_RTF_AFTNRESTART
Definition: rtfkeywd.hxx:419
#define OOO_STRING_SVTOOLS_RTF_PGNHNSM
Definition: rtfkeywd.hxx:619
#define OOO_STRING_SVTOOLS_RTF_AFTNNGBNUMK
Definition: rtfkeywd.hxx:733
#define OOO_STRING_SVTOOLS_RTF_SHPRSLT
Definition: rtfkeywd.hxx:1002
#define OOO_STRING_SVTOOLS_RTF_LS
Definition: rtfkeywd.hxx:903
#define OOO_STRING_SVTOOLS_RTF_FLYCOLUMN
Definition: rtfkeywd.hxx:1105
#define OOO_STRING_SVTOOLS_RTF_OLTHDASHD
Definition: rtfkeywd.hxx:1146
#define OOO_STRING_SVTOOLS_RTF_G
Definition: rtfkeywd.hxx:864
#define OOO_STRING_SVTOOLS_RTF_TLSWG
Definition: rtfkeywd.hxx:1121
#define OOO_STRING_SVTOOLS_RTF_UL
Definition: rtfkeywd.hxx:371
#define OOO_STRING_SVTOOLS_RTF_ASTRIKE
Definition: rtfkeywd.hxx:432
#define OOO_STRING_SVTOOLS_RTF_GRFMIRROR
Definition: rtfkeywd.hxx:1078
#define OOO_STRING_SVTOOLS_RTF_LEVELPREVSPACE
Definition: rtfkeywd.hxx:884
#define OOO_STRING_SVTOOLS_RTF_VIEWSCALE
Definition: rtfkeywd.hxx:1030
#define OOO_STRING_SVTOOLS_RTF_DPLINEPAL
Definition: rtfkeywd.hxx:515
#define OOO_STRING_SVTOOLS_RTF_DPLINECOR
Definition: rtfkeywd.hxx:508
#define OOO_STRING_SVTOOLS_RTF_BRSP
Definition: rtfkeywd.hxx:73
#define OOO_STRING_SVTOOLS_RTF_FOOTERR
Definition: rtfkeywd.hxx:170
#define OOO_STRING_SVTOOLS_RTF_FTNNGBNUMD
Definition: rtfkeywd.hxx:858
#define OOO_STRING_SVTOOLS_RTF_BRDRFRAME
Definition: rtfkeywd.hxx:755
#define OOO_STRING_SVTOOLS_RTF_V
Definition: rtfkeywd.hxx:377
#define OOO_STRING_SVTOOLS_RTF_LINE
Definition: rtfkeywd.hxx:213
#define OOO_STRING_SVTOOLS_RTF_TQR
Definition: rtfkeywd.hxx:360
#define OOO_STRING_SVTOOLS_RTF_PNORD
Definition: rtfkeywd.hxx:643
#define OOO_STRING_SVTOOLS_RTF_NOLEAD
Definition: rtfkeywd.hxx:909
#define OOO_STRING_SVTOOLS_RTF_FFENTRYMCR
Definition: rtfkeywd.hxx:827
#define OOO_STRING_SVTOOLS_RTF_TB
Definition: rtfkeywd.hxx:346
#define OOO_STRING_SVTOOLS_RTF_FTNNZODIAC
Definition: rtfkeywd.hxx:861
#define OOO_STRING_SVTOOLS_RTF_LIN
Definition: rtfkeywd.hxx:212
#define OOO_STRING_SVTOOLS_RTF_PMMETAFILE
Definition: rtfkeywd.hxx:285
#define OOO_STRING_SVTOOLS_RTF_DFRSTART
Definition: rtfkeywd.hxx:812
#define OOO_STRING_SVTOOLS_RTF_CHDPL
Definition: rtfkeywd.hxx:87
#define OOO_STRING_SVTOOLS_RTF_BRDRDASHDD
Definition: rtfkeywd.hxx:747
#define OOO_STRING_SVTOOLS_RTF_NOBRKHYPH
Definition: rtfkeywd.hxx:392
#define OOO_STRING_SVTOOLS_RTF_QL
Definition: rtfkeywd.hxx:307
#define OOO_STRING_SVTOOLS_RTF_DATAFIELD
Definition: rtfkeywd.hxx:451
#define OOO_STRING_SVTOOLS_RTF_PAR
Definition: rtfkeywd.hxx:252
#define OOO_STRING_SVTOOLS_RTF_SBASEDON
Definition: rtfkeywd.hxx:325
#define OOO_STRING_SVTOOLS_RTF_FVALIDHPFS
Definition: rtfkeywd.hxx:570
#define OOO_STRING_SVTOOLS_RTF_DOBYMARGIN
Definition: rtfkeywd.hxx:456
#define OOO_STRING_SVTOOLS_RTF_BRDRDOT
Definition: rtfkeywd.hxx:63
#define OOO_STRING_SVTOOLS_RTF_NOSPACEFORUL
Definition: rtfkeywd.hxx:913
#define OOO_STRING_SVTOOLS_RTF_FFPROT
Definition: rtfkeywd.hxx:838
#define OOO_STRING_SVTOOLS_RTF_PAGEBB
Definition: rtfkeywd.hxx:249
#define OOO_STRING_SVTOOLS_RTF_SECTSPECIFYL
Definition: rtfkeywd.hxx:982
#define OOO_STRING_SVTOOLS_RTF_AOUTL
Definition: rtfkeywd.hxx:429
#define OOO_STRING_SVTOOLS_RTF_DPRECT
Definition: rtfkeywd.hxx:523
#define OOO_STRING_SVTOOLS_RTF_OBJHTML
Definition: rtfkeywd.hxx:917
#define OOO_STRING_SVTOOLS_RTF_HEADERXR
Definition: rtfkeywd.hxx:1081
#define OOO_STRING_SVTOOLS_RTF_ULTHDASHD
Definition: rtfkeywd.hxx:1049
#define OOO_STRING_SVTOOLS_RTF_SHPBXPAGE
Definition: rtfkeywd.hxx:987
#define OOO_STRING_SVTOOLS_RTF_AFTNNAUC
Definition: rtfkeywd.hxx:409
#define OOO_STRING_SVTOOLS_RTF_YR
Definition: rtfkeywd.hxx:391
#define OOO_STRING_SVTOOLS_RTF_DEFLANGFE
Definition: rtfkeywd.hxx:809
#define OOO_STRING_SVTOOLS_RTF_ULTHLDASH
Definition: rtfkeywd.hxx:1048
#define OOO_STRING_SVTOOLS_RTF_OPTHYPH
Definition: rtfkeywd.hxx:26
#define OOO_STRING_SVTOOLS_RTF_AFTNRSTCONT
Definition: rtfkeywd.hxx:420
#define OOO_STRING_SVTOOLS_RTF_PHPG
Definition: rtfkeywd.hxx:271
#define OOO_STRING_SVTOOLS_RTF_CHBGDKVERT
Definition: rtfkeywd.hxx:779
#define OOO_STRING_SVTOOLS_RTF_PNULW
Definition: rtfkeywd.hxx:664
#define OOO_STRING_SVTOOLS_RTF_PGNY
Definition: rtfkeywd.hxx:267
#define OOO_STRING_SVTOOLS_RTF_CLCFPAT
Definition: rtfkeywd.hxx:110
#define OOO_STRING_SVTOOLS_RTF_CHBGHORIZ
Definition: rtfkeywd.hxx:781
#define OOO_STRING_SVTOOLS_RTF_SECT
Definition: rtfkeywd.hxx:333
#define OOO_STRING_SVTOOLS_RTF_DOBYPAGE
Definition: rtfkeywd.hxx:457
#define OOO_STRING_SVTOOLS_RTF_SECTLINEGRID
Definition: rtfkeywd.hxx:980
#define OOO_STRING_SVTOOLS_RTF_FOOTERYT
Definition: rtfkeywd.hxx:1082
#define OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMT
Definition: rtfkeywd.hxx:729
#define OOO_STRING_SVTOOLS_RTF_PGNCONT
Definition: rtfkeywd.hxx:257
#define OOO_STRING_SVTOOLS_RTF_CHCFPAT
Definition: rtfkeywd.hxx:785
#define OOO_STRING_SVTOOLS_RTF_FSCRIPT
Definition: rtfkeywd.hxx:177
#define OOO_STRING_SVTOOLS_RTF_BKMKEND
Definition: rtfkeywd.hxx:54
#define OOO_STRING_SVTOOLS_RTF_PICCROPL
Definition: rtfkeywd.hxx:273
#define OOO_STRING_SVTOOLS_RTF_HEADERF
Definition: rtfkeywd.hxx:191
#define OOO_STRING_SVTOOLS_RTF_CLBGDKCROSS
Definition: rtfkeywd.hxx:97
#define OOO_STRING_SVTOOLS_RTF_SHPBYPAGE
Definition: rtfkeywd.hxx:990
#define OOO_STRING_SVTOOLS_RTF_BINFSXN
Definition: rtfkeywd.hxx:50
#define OOO_STRING_SVTOOLS_RTF_TITLE
Definition: rtfkeywd.hxx:351
#define OOO_STRING_SVTOOLS_RTF_PICBMP
Definition: rtfkeywd.hxx:622
#define OOO_STRING_SVTOOLS_RTF_NOFCHARS
Definition: rtfkeywd.hxx:240
#define OOO_STRING_SVTOOLS_RTF_BOX
Definition: rtfkeywd.hxx:57
#define OOO_STRING_SVTOOLS_RTF_DPASTARTL
Definition: rtfkeywd.hxx:469
#define OOO_STRING_SVTOOLS_RTF_PNLVLBLT
Definition: rtfkeywd.hxx:639
#define OOO_STRING_SVTOOLS_RTF_FFTYPE
Definition: rtfkeywd.hxx:843
#define OOO_STRING_SVTOOLS_RTF_ULTH
Definition: rtfkeywd.hxx:1023
#define OOO_STRING_SVTOOLS_RTF_PGNRESTART
Definition: rtfkeywd.hxx:261
#define OOO_STRING_SVTOOLS_RTF_BXE
Definition: rtfkeywd.hxx:76
#define OOO_STRING_SVTOOLS_RTF_LISTOVERRIDETABLE
Definition: rtfkeywd.hxx:897
#define OOO_STRING_SVTOOLS_RTF_BGDKVERT
Definition: rtfkeywd.hxx:45
#define OOO_STRING_SVTOOLS_RTF_AFTNNDBNUMD
Definition: rtfkeywd.hxx:727
#define OOO_STRING_SVTOOLS_RTF_COLNO
Definition: rtfkeywd.hxx:114
#define OOO_STRING_SVTOOLS_RTF_PGWSXN
Definition: rtfkeywd.hxx:268
#define OOO_STRING_SVTOOLS_RTF_FFSTATTEXT
Definition: rtfkeywd.hxx:842
#define OOO_STRING_SVTOOLS_RTF_LANG
Definition: rtfkeywd.hxx:208
#define OOO_STRING_SVTOOLS_RTF_AFTNNALC
Definition: rtfkeywd.hxx:407
#define OOO_STRING_SVTOOLS_RTF_CPG
Definition: rtfkeywd.hxx:448
#define OOO_STRING_SVTOOLS_RTF_PNDBNUML
Definition: rtfkeywd.hxx:949
#define OOO_STRING_SVTOOLS_RTF_POSXI
Definition: rtfkeywd.hxx:290
#define OOO_STRING_SVTOOLS_RTF_DPTXBX
Definition: rtfkeywd.hxx:528
#define OOO_STRING_SVTOOLS_RTF_ANIMTEXT
Definition: rtfkeywd.hxx:738
#define OOO_STRING_SVTOOLS_RTF_DPCODESCENT
Definition: rtfkeywd.hxx:819
#define OOO_STRING_SVTOOLS_RTF_QJ
Definition: rtfkeywd.hxx:306
#define OOO_STRING_SVTOOLS_RTF_LTRROW
Definition: rtfkeywd.hxx:583
#define OOO_STRING_SVTOOLS_RTF_COLSX
Definition: rtfkeywd.hxx:118
#define OOO_STRING_SVTOOLS_RTF_FCHARSET
Definition: rtfkeywd.hxx:153
#define OOO_STRING_SVTOOLS_RTF_CLPADFB
Definition: rtfkeywd.hxx:793
#define OOO_STRING_SVTOOLS_RTF_HLFR
Definition: rtfkeywd.hxx:868
#define OOO_STRING_SVTOOLS_RTF_FTNALT
Definition: rtfkeywd.hxx:552
#define OOO_STRING_SVTOOLS_RTF_POSXC
Definition: rtfkeywd.hxx:289
#define OOO_STRING_SVTOOLS_RTF_PNAIUEO
Definition: rtfkeywd.hxx:944
#define OOO_STRING_SVTOOLS_RTF_TCN
Definition: rtfkeywd.hxx:697
#define OOO_STRING_SVTOOLS_RTF_VERTALT
Definition: rtfkeywd.hxx:383
#define OOO_STRING_SVTOOLS_RTF_PHMRG
Definition: rtfkeywd.hxx:270
#define OOO_STRING_SVTOOLS_RTF_COLUMN
Definition: rtfkeywd.hxx:119
#define OOO_STRING_SVTOOLS_RTF_ALLPROT
Definition: rtfkeywd.hxx:427
#define OOO_STRING_SVTOOLS_RTF_PNGANADA
Definition: rtfkeywd.hxx:951
#define OOO_STRING_SVTOOLS_RTF_ATRFEND
Definition: rtfkeywd.hxx:437
#define OOO_STRING_SVTOOLS_RTF_PICW
Definition: rtfkeywd.hxx:282
#define OOO_STRING_SVTOOLS_RTF_STRIKED
Definition: rtfkeywd.hxx:1013
#define OOO_STRING_SVTOOLS_RTF_SPRSTSM
Definition: rtfkeywd.hxx:1010
#define OOO_STRING_SVTOOLS_RTF_CHBGCROSS
Definition: rtfkeywd.hxx:772
#define OOO_STRING_SVTOOLS_RTF_CELLX
Definition: rtfkeywd.hxx:81
#define OOO_STRING_SVTOOLS_RTF_TRRH
Definition: rtfkeywd.hxx:368
#define OOO_STRING_SVTOOLS_RTF_HYPHAUTO
Definition: rtfkeywd.hxx:573
#define OOO_STRING_SVTOOLS_RTF_FOOTERY
Definition: rtfkeywd.hxx:171
#define OOO_STRING_SVTOOLS_RTF_SHPINST
Definition: rtfkeywd.hxx:996
#define OOO_STRING_SVTOOLS_RTF_HLLOC
Definition: rtfkeywd.hxx:870
#define OOO_STRING_SVTOOLS_RTF_MARGRSXN
Definition: rtfkeywd.hxx:233
#define OOO_STRING_SVTOOLS_RTF_PICSCALEX
Definition: rtfkeywd.hxx:279
#define OOO_STRING_SVTOOLS_RTF_DPFILLFGCR
Definition: rtfkeywd.hxx:500
#define OOO_STRING_SVTOOLS_RTF_POSXR
Definition: rtfkeywd.hxx:293
#define OOO_STRING_SVTOOLS_RTF_DPSHADX
Definition: rtfkeywd.hxx:526
#define OOO_STRING_SVTOOLS_RTF_ID
Definition: rtfkeywd.hxx:198
#define OOO_STRING_SVTOOLS_RTF_FLYCNTNT
Definition: rtfkeywd.hxx:1104
#define OOO_STRING_SVTOOLS_RTF_LINKVAL
Definition: rtfkeywd.hxx:888
#define OOO_STRING_SVTOOLS_RTF_FTNNRLC
Definition: rtfkeywd.hxx:558
#define OOO_STRING_SVTOOLS_RTF_BRDRR
Definition: rtfkeywd.hxx:67
#define OOO_STRING_SVTOOLS_RTF_CLBRDRT
Definition: rtfkeywd.hxx:108
#define OOO_STRING_SVTOOLS_RTF_DPLINEDADODO
Definition: rtfkeywd.hxx:510
#define OOO_STRING_SVTOOLS_RTF_SHPLEFT
Definition: rtfkeywd.hxx:997
#define OOO_STRING_SVTOOLS_RTF_QR
Definition: rtfkeywd.hxx:308
#define OOO_STRING_SVTOOLS_RTF_SHPWR
Definition: rtfkeywd.hxx:1006
#define OOO_STRING_SVTOOLS_RTF_PGNZODIACL
Definition: rtfkeywd.hxx:942
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHTNMG
Definition: rtfkeywd.hxx:763
#define OOO_STRING_SVTOOLS_RTF_PSOVER
Definition: rtfkeywd.hxx:300
#define OOO_STRING_SVTOOLS_RTF_DEFLANG
Definition: rtfkeywd.hxx:127
#define OOO_STRING_SVTOOLS_RTF_PRTDATA
Definition: rtfkeywd.hxx:1089
#define OOO_STRING_SVTOOLS_RTF_OLTHDASH
Definition: rtfkeywd.hxx:1143
#define OOO_STRING_SVTOOLS_RTF_DROPCAPT
Definition: rtfkeywd.hxx:137
#define OOO_STRING_SVTOOLS_RTF_JPEGBLIP
Definition: rtfkeywd.hxx:874
#define OOO_STRING_SVTOOLS_RTF_BRDRART
Definition: rtfkeywd.hxx:745
#define OOO_STRING_SVTOOLS_RTF_FLDALT
Definition: rtfkeywd.hxx:543
#define OOO_STRING_SVTOOLS_RTF_PGDSCTBL
Definition: rtfkeywd.hxx:1113
#define OOO_STRING_SVTOOLS_RTF_BLUE
Definition: rtfkeywd.hxx:56
#define OOO_STRING_SVTOOLS_RTF_FFOWNHELP
Definition: rtfkeywd.hxx:836
#define OOO_STRING_SVTOOLS_RTF_FORMSHADE
Definition: rtfkeywd.hxx:549
#define OOO_STRING_SVTOOLS_RTF_HYPHMAX
Definition: rtfkeywd.hxx:1120
#define OOO_STRING_SVTOOLS_RTF_PGBRDROPT
Definition: rtfkeywd.hxx:927
#define OOO_STRING_SVTOOLS_RTF_FTNNGBNUMK
Definition: rtfkeywd.hxx:859
#define OOO_STRING_SVTOOLS_RTF_SBKEVEN
Definition: rtfkeywd.hxx:327
#define OOO_STRING_SVTOOLS_RTF_FLDTYPE
Definition: rtfkeywd.hxx:845
#define OOO_STRING_SVTOOLS_RTF_PGBRDRSNAP
Definition: rtfkeywd.hxx:929
#define OOO_STRING_SVTOOLS_RTF_PAPERW
Definition: rtfkeywd.hxx:251
#define OOO_STRING_SVTOOLS_RTF_FTNSEP
Definition: rtfkeywd.hxx:183
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHMG
Definition: rtfkeywd.hxx:760
#define OOO_STRING_SVTOOLS_RTF_ASCAPS
Definition: rtfkeywd.hxx:430
#define OOO_STRING_SVTOOLS_RTF_LFOLEVEL
Definition: rtfkeywd.hxx:969
#define OOO_STRING_SVTOOLS_RTF_LTRSECT
Definition: rtfkeywd.hxx:584
#define OOO_STRING_SVTOOLS_RTF_NOFPAGES
Definition: rtfkeywd.hxx:241
#define OOO_STRING_SVTOOLS_RTF_DOBXCOLUMN
Definition: rtfkeywd.hxx:453
#define OOO_STRING_SVTOOLS_RTF_HYPHHOTZ
Definition: rtfkeywd.hxx:196
#define OOO_STRING_SVTOOLS_RTF_BKMKSTART
Definition: rtfkeywd.hxx:55
#define OOO_STRING_SVTOOLS_RTF_ATNTIME
Definition: rtfkeywd.hxx:436
#define OOO_STRING_SVTOOLS_RTF_ATRFSTART
Definition: rtfkeywd.hxx:438
#define OOO_STRING_SVTOOLS_RTF_OBJAUTLINK
Definition: rtfkeywd.hxx:591
#define OOO_STRING_SVTOOLS_RTF_SHPBOTTOM
Definition: rtfkeywd.hxx:984
#define OOO_STRING_SVTOOLS_RTF_BLIPTAG
Definition: rtfkeywd.hxx:742
#define OOO_STRING_SVTOOLS_RTF_DPSHADOW
Definition: rtfkeywd.hxx:525
#define OOO_STRING_SVTOOLS_RTF_LTRMARK
Definition: rtfkeywd.hxx:581
#define OOO_STRING_SVTOOLS_RTF_LISTOVERRIDEFORMAT
Definition: rtfkeywd.hxx:895
#define OOO_STRING_SVTOOLS_RTF_DROPCAPLI
Definition: rtfkeywd.hxx:136
#define OOO_STRING_SVTOOLS_RTF_SHIDDEN
Definition: rtfkeywd.hxx:983
#define OOO_STRING_SVTOOLS_RTF_POSYIN
Definition: rtfkeywd.hxx:970
#define OOO_STRING_SVTOOLS_RTF_LINESTART
Definition: rtfkeywd.hxx:219
#define OOO_STRING_SVTOOLS_RTF_CGRID
Definition: rtfkeywd.hxx:769
#define OOO_STRING_SVTOOLS_RTF_ROW
Definition: rtfkeywd.hxx:318
#define OOO_STRING_SVTOOLS_RTF_VERN
Definition: rtfkeywd.hxx:378
#define OOO_STRING_SVTOOLS_RTF_PNCHOSUNG
Definition: rtfkeywd.hxx:946
#define OOO_STRING_SVTOOLS_RTF_SBKCOL
Definition: rtfkeywd.hxx:326
#define OOO_STRING_SVTOOLS_RTF_FTNNDBNUMD
Definition: rtfkeywd.hxx:853
#define OOO_STRING_SVTOOLS_RTF_PGNUCRM
Definition: rtfkeywd.hxx:265
#define OOO_STRING_SVTOOLS_RTF_PNQL
Definition: rtfkeywd.hxx:647
#define OOO_STRING_SVTOOLS_RTF_OBJALIAS
Definition: rtfkeywd.hxx:589
#define OOO_STRING_SVTOOLS_RTF_DPGROUP
Definition: rtfkeywd.hxx:504
#define OOO_STRING_SVTOOLS_RTF_SPRSTSP
Definition: rtfkeywd.hxx:694
#define OOO_STRING_SVTOOLS_RTF_LINEPPAGE
Definition: rtfkeywd.hxx:217
#define OOO_STRING_SVTOOLS_RTF_NOFCHARSWS
Definition: rtfkeywd.hxx:908
#define OOO_STRING_SVTOOLS_RTF_BRDRL
Definition: rtfkeywd.hxx:66
#define OOO_STRING_SVTOOLS_RTF_ANSI
Definition: rtfkeywd.hxx:32
#define OOO_STRING_SVTOOLS_RTF_FAFIXED
Definition: rtfkeywd.hxx:1070
#define OOO_STRING_SVTOOLS_RTF_CHBGBDIAG
Definition: rtfkeywd.hxx:771
#define OOO_STRING_SVTOOLS_RTF_AULDB
Definition: rtfkeywd.hxx:441
#define OOO_STRING_SVTOOLS_RTF_PGNDEC
Definition: rtfkeywd.hxx:258
#define OOO_STRING_SVTOOLS_RTF_AFTNBJ
Definition: rtfkeywd.hxx:405
#define OOO_STRING_SVTOOLS_RTF_CAPS
Definition: rtfkeywd.hxx:77
#define OOO_STRING_SVTOOLS_RTF_FTNNAR
Definition: rtfkeywd.hxx:555
#define OOO_STRING_SVTOOLS_RTF_TRLEFT
Definition: rtfkeywd.hxx:363
#define OOO_STRING_SVTOOLS_RTF_PNRNFC
Definition: rtfkeywd.hxx:959
#define OOO_STRING_SVTOOLS_RTF_FLDINST
Definition: rtfkeywd.hxx:159
#define OOO_STRING_SVTOOLS_RTF_DOCCOMM
Definition: rtfkeywd.hxx:134
#define OOO_STRING_SVTOOLS_RTF_CHBGFDIAG
Definition: rtfkeywd.hxx:780
#define OOO_STRING_SVTOOLS_RTF_PGNHNSH
Definition: rtfkeywd.hxx:618
#define OOO_STRING_SVTOOLS_RTF_ZWJ
Definition: rtfkeywd.hxx:717
#define OOO_STRING_SVTOOLS_RTF_POSY
Definition: rtfkeywd.hxx:294
#define OOO_STRING_SVTOOLS_RTF_PNRAUTH
Definition: rtfkeywd.hxx:957
#define OOO_STRING_SVTOOLS_RTF_BINSXN
Definition: rtfkeywd.hxx:51
#define OOO_STRING_SVTOOLS_RTF_DFRSTOP
Definition: rtfkeywd.hxx:813
#define OOO_STRING_SVTOOLS_RTF_FTNNDBNUMK
Definition: rtfkeywd.hxx:854
#define OOO_STRING_SVTOOLS_RTF_POSYT
Definition: rtfkeywd.hxx:298
#define OOO_STRING_SVTOOLS_RTF_INTBL
Definition: rtfkeywd.hxx:200
#define OOO_STRING_SVTOOLS_RTF_INFO
Definition: rtfkeywd.hxx:199
#define OOO_STRING_SVTOOLS_RTF_ADDITIVE
Definition: rtfkeywd.hxx:398
#define OOO_STRING_SVTOOLS_RTF_AFTNNGANADA
Definition: rtfkeywd.hxx:730
#define OOO_STRING_SVTOOLS_RTF_FOOTERF
Definition: rtfkeywd.hxx:168
#define OOO_STRING_SVTOOLS_RTF_PICH
Definition: rtfkeywd.hxx:276
#define OOO_STRING_SVTOOLS_RTF_POSNEGX
Definition: rtfkeywd.hxx:286
#define OOO_STRING_SVTOOLS_RTF_TROWD
Definition: rtfkeywd.hxx:364
#define OOO_STRING_SVTOOLS_RTF_EXPSHRTN
Definition: rtfkeywd.hxx:822
#define OOO_STRING_SVTOOLS_RTF_OLTHD
Definition: rtfkeywd.hxx:1142
#define OOO_STRING_SVTOOLS_RTF_BGHORIZ
Definition: rtfkeywd.hxx:47
#define OOO_STRING_SVTOOLS_RTF_TQDEC
Definition: rtfkeywd.hxx:359
#define OOO_STRING_SVTOOLS_RTF_BKMKCOLL
Definition: rtfkeywd.hxx:53
#define OOO_STRING_SVTOOLS_RTF_CHBGVERT
Definition: rtfkeywd.hxx:782
#define OOO_STRING_SVTOOLS_RTF_PNCF
Definition: rtfkeywd.hxx:629
#define OOO_STRING_SVTOOLS_RTF_PCA
Definition: rtfkeywd.hxx:255
#define OOO_STRING_SVTOOLS_RTF_TRPADDFT
Definition: rtfkeywd.hxx:714
#define OOO_STRING_SVTOOLS_RTF_REVISED
Definition: rtfkeywd.hxx:312
#define OOO_STRING_SVTOOLS_RTF_CLBGDKBDIAG
Definition: rtfkeywd.hxx:96
#define OOO_STRING_SVTOOLS_RTF_PGNHNSP
Definition: rtfkeywd.hxx:621
#define OOO_STRING_SVTOOLS_RTF_OLTHDASHDD
Definition: rtfkeywd.hxx:1147
#define OOO_STRING_SVTOOLS_RTF_NOCWRAP
Definition: rtfkeywd.hxx:1071
#define OOO_STRING_SVTOOLS_RTF_TRPADDFR
Definition: rtfkeywd.hxx:713
#define OOO_STRING_SVTOOLS_RTF_PGNZODIAC
Definition: rtfkeywd.hxx:940
#define OOO_STRING_SVTOOLS_RTF_DPPTY
Definition: rtfkeywd.hxx:522
#define OOO_STRING_SVTOOLS_RTF_PGNGANADA
Definition: rtfkeywd.hxx:935
#define OOO_STRING_SVTOOLS_RTF_PICCROPR
Definition: rtfkeywd.hxx:274
#define OOO_STRING_SVTOOLS_RTF_FET
Definition: rtfkeywd.hxx:539
#define OOO_STRING_SVTOOLS_RTF_TXE
Definition: rtfkeywd.hxx:370
#define OOO_STRING_SVTOOLS_RTF_NOOVERFLOW
Definition: rtfkeywd.hxx:1072
#define OOO_STRING_SVTOOLS_RTF_OLDASHD
Definition: rtfkeywd.hxx:1137
#define OOO_STRING_SVTOOLS_RTF_DPXSIZE
Definition: rtfkeywd.hxx:532
#define OOO_STRING_SVTOOLS_RTF_SHPTOP
Definition: rtfkeywd.hxx:1003
#define OOO_STRING_SVTOOLS_RTF_DEFTAB
Definition: rtfkeywd.hxx:128
#define OOO_STRING_SVTOOLS_RTF_MARGMIRROR
Definition: rtfkeywd.hxx:231
#define OOO_STRING_SVTOOLS_RTF_PNRNOT
Definition: rtfkeywd.hxx:960
#define OOO_STRING_SVTOOLS_RTF_TRHDR
Definition: rtfkeywd.hxx:705
#define OOO_STRING_SVTOOLS_RTF_PSZ
Definition: rtfkeywd.hxx:667
#define OOO_STRING_SVTOOLS_RTF_AFTNNCNUM
Definition: rtfkeywd.hxx:724
#define OOO_STRING_SVTOOLS_RTF_CHATN
Definition: rtfkeywd.hxx:84
#define OOO_STRING_SVTOOLS_RTF_WMETAFILE
Definition: rtfkeywd.hxx:389
#define OOO_STRING_SVTOOLS_RTF_HICH
Definition: rtfkeywd.hxx:1054
#define OOO_STRING_SVTOOLS_RTF_FOSNUM
Definition: rtfkeywd.hxx:550
#define OOO_STRING_SVTOOLS_RTF_LTRCH
Definition: rtfkeywd.hxx:579
#define OOO_STRING_SVTOOLS_RTF_DPCOUNT
Definition: rtfkeywd.hxx:490
#define OOO_STRING_SVTOOLS_RTF_SAUTOUPD
Definition: rtfkeywd.hxx:977
#define OOO_STRING_SVTOOLS_RTF_SHADOW
Definition: rtfkeywd.hxx:1108
#define OOO_STRING_SVTOOLS_RTF_BRDRDASHDOTSTR
Definition: rtfkeywd.hxx:748
#define OOO_STRING_SVTOOLS_RTF_BRDRTHTNSG
Definition: rtfkeywd.hxx:758
#define OOO_STRING_SVTOOLS_RTF_DN
Definition: rtfkeywd.hxx:133
#define OOO_STRING_SVTOOLS_RTF_FACENTER
Definition: rtfkeywd.hxx:1068
#define OOO_STRING_SVTOOLS_RTF_FLYVERT
Definition: rtfkeywd.hxx:1097
#define OOO_STRING_SVTOOLS_RTF_SUBDOCUMENT
Definition: rtfkeywd.hxx:695
#define OOO_STRING_SVTOOLS_RTF_ANNOTATION
Definition: rtfkeywd.hxx:31
#define OOO_STRING_SVTOOLS_RTF_EXPNDTW
Definition: rtfkeywd.hxx:148
#define OOO_STRING_SVTOOLS_RTF_TRPADDL
Definition: rtfkeywd.hxx:708
#define OOO_STRING_SVTOOLS_RTF_WIDOWCTRL
Definition: rtfkeywd.hxx:388
#define OOO_STRING_SVTOOLS_RTF_FBIAS
Definition: rtfkeywd.hxx:824
#define OOO_STRING_SVTOOLS_RTF_LISTLEVEL
Definition: rtfkeywd.hxx:891
#define OOO_STRING_SVTOOLS_RTF_DPFILLFGCB
Definition: rtfkeywd.hxx:498
#define OOO_STRING_SVTOOLS_RTF_PGNSTART
Definition: rtfkeywd.hxx:262
#define OOO_STRING_SVTOOLS_RTF_FAAUTO
Definition: rtfkeywd.hxx:823
#define OOO_STRING_SVTOOLS_RTF_MACPICT
Definition: rtfkeywd.hxx:225
#define OOO_STRING_SVTOOLS_RTF_OLDASHDD
Definition: rtfkeywd.hxx:1138
#define OOO_STRING_SVTOOLS_RTF_WPJST
Definition: rtfkeywd.hxx:1035
#define OOO_STRING_SVTOOLS_RTF_NOXLATTOYEN
Definition: rtfkeywd.hxx:915
#define OOO_STRING_SVTOOLS_RTF_FLDDIRTY
Definition: rtfkeywd.hxx:157
#define OOO_STRING_SVTOOLS_RTF_CLVERTALT
Definition: rtfkeywd.hxx:799
#define OOO_STRING_SVTOOLS_RTF_OBJW
Definition: rtfkeywd.hxx:614
#define OOO_STRING_SVTOOLS_RTF_STEXTFLOW
Definition: rtfkeywd.hxx:1012
#define OOO_STRING_SVTOOLS_RTF_DPENDGROUP
Definition: rtfkeywd.hxx:492
#define OOO_STRING_SVTOOLS_RTF_NOEXTRASPRL
Definition: rtfkeywd.hxx:586
#define OOO_STRING_SVTOOLS_RTF_PNUCRM
Definition: rtfkeywd.hxx:659
#define OOO_STRING_SVTOOLS_RTF_OLDLINEWRAP
Definition: rtfkeywd.hxx:919
#define OOO_STRING_SVTOOLS_RTF_SHPTXT
Definition: rtfkeywd.hxx:1004
#define OOO_STRING_SVTOOLS_RTF_USERPROPS
Definition: rtfkeywd.hxx:1028
#define OOO_STRING_SVTOOLS_RTF_CHARSCALEX
Definition: rtfkeywd.hxx:770
#define OOO_STRING_SVTOOLS_RTF_OLD
Definition: rtfkeywd.hxx:1132
#define OOO_STRING_SVTOOLS_RTF_PUBAUTO
Definition: rtfkeywd.hxx:668
#define OOO_STRING_SVTOOLS_RTF_DPFILLBGPAL
Definition: rtfkeywd.hxx:497
#define OOO_STRING_SVTOOLS_RTF_AFTNSEPC
Definition: rtfkeywd.hxx:422
#define OOO_STRING_SVTOOLS_RTF_PAGE
Definition: rtfkeywd.hxx:248
#define OOO_STRING_SVTOOLS_RTF_NOSECTEXPAND
Definition: rtfkeywd.hxx:911
#define OOO_STRING_SVTOOLS_RTF_FLYPRTCTD
Definition: rtfkeywd.hxx:1095
#define OOO_STRING_SVTOOLS_RTF_LEVEL
Definition: rtfkeywd.hxx:210
#define OOO_STRING_SVTOOLS_RTF_CCHS
Definition: rtfkeywd.hxx:447
#define OOO_STRING_SVTOOLS_RTF_CLBGBDIAG
Definition: rtfkeywd.hxx:93
#define OOO_STRING_SVTOOLS_RTF_LISTOVERRIDE
Definition: rtfkeywd.hxx:893
#define OOO_STRING_SVTOOLS_RTF_OBJSUB
Definition: rtfkeywd.hxx:610
#define OOO_STRING_SVTOOLS_RTF_DPTXBXMAR
Definition: rtfkeywd.hxx:529
#define OOO_STRING_SVTOOLS_RTF_HYPHLEAD
Definition: rtfkeywd.hxx:1118
#define OOO_STRING_SVTOOLS_RTF_OBJCLASS
Definition: rtfkeywd.hxx:592
#define OOO_STRING_SVTOOLS_RTF_CBPAT
Definition: rtfkeywd.hxx:79
#define OOO_STRING_SVTOOLS_RTF_PNSCAPS
Definition: rtfkeywd.hxx:650
#define OOO_STRING_SVTOOLS_RTF_BGVERT
Definition: rtfkeywd.hxx:48
#define OOO_STRING_SVTOOLS_RTF_DPASTARTW
Definition: rtfkeywd.hxx:471
#define OOO_STRING_SVTOOLS_RTF_HEADERR
Definition: rtfkeywd.hxx:193
#define OOO_STRING_SVTOOLS_RTF_DPFILLBGCB
Definition: rtfkeywd.hxx:493
#define OOO_STRING_SVTOOLS_RTF_BRDRDASHD
Definition: rtfkeywd.hxx:746
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTY
Definition: rtfkeywd.hxx:131
#define OOO_STRING_SVTOOLS_RTF_LANDSCAPE
Definition: rtfkeywd.hxx:207
#define OOO_STRING_SVTOOLS_RTF_OBJUPDATE
Definition: rtfkeywd.hxx:613
#define OOO_STRING_SVTOOLS_RTF_TRGAPH
Definition: rtfkeywd.hxx:362
#define OOO_STRING_SVTOOLS_RTF_OBJSETSIZE
Definition: rtfkeywd.hxx:609
#define OOO_STRING_SVTOOLS_RTF_PNB
Definition: rtfkeywd.hxx:626
#define OOO_STRING_SVTOOLS_RTF_CLBGCROSS
Definition: rtfkeywd.hxx:94
#define OOO_STRING_SVTOOLS_RTF_DPCALLOUT
Definition: rtfkeywd.hxx:472
#define OOO_STRING_SVTOOLS_RTF_SECTNUM
Definition: rtfkeywd.hxx:686
#define OOO_STRING_SVTOOLS_RTF_SECTSPECIFYCL
Definition: rtfkeywd.hxx:981
#define OOO_STRING_SVTOOLS_RTF_TCELLD
Definition: rtfkeywd.hxx:1015
#define OOO_STRING_SVTOOLS_RTF_FIELD
Definition: rtfkeywd.hxx:156
#define OOO_STRING_SVTOOLS_RTF_WBMWIDTHBYTES
Definition: rtfkeywd.hxx:387
#define OOO_STRING_SVTOOLS_RTF_AUL
Definition: rtfkeywd.hxx:439
#define OOO_STRING_SVTOOLS_RTF_CHDATE
Definition: rtfkeywd.hxx:85
#define OOO_STRING_SVTOOLS_RTF_CLBRDRB
Definition: rtfkeywd.hxx:105
#define OOO_STRING_SVTOOLS_RTF_BRDRSH
Definition: rtfkeywd.hxx:69
#define OOO_STRING_SVTOOLS_RTF_ACCDOT
Definition: rtfkeywd.hxx:1060
#define OOO_STRING_SVTOOLS_RTF_AENDNOTES
Definition: rtfkeywd.hxx:401
#define OOO_STRING_SVTOOLS_RTF_OBJPUB
Definition: rtfkeywd.hxx:605
#define OOO_STRING_SVTOOLS_RTF_MSMCAP
Definition: rtfkeywd.hxx:907
#define OOO_STRING_SVTOOLS_RTF_WBMBITSPIXEL
Definition: rtfkeywd.hxx:385
#define OOO_STRING_SVTOOLS_RTF_FTNNZODIACD
Definition: rtfkeywd.hxx:862
#define OOO_STRING_SVTOOLS_RTF_OVERLAY
Definition: rtfkeywd.hxx:921
#define OOO_STRING_SVTOOLS_RTF_RTLCH
Definition: rtfkeywd.hxx:679
#define OOO_STRING_SVTOOLS_RTF_STYLESHEET
Definition: rtfkeywd.hxx:341
#define OOO_STRING_SVTOOLS_RTF_BRDRINSET
Definition: rtfkeywd.hxx:753
#define OOO_STRING_SVTOOLS_RTF_PNCARD
Definition: rtfkeywd.hxx:628
#define OOO_STRING_SVTOOLS_RTF_CFPAT
Definition: rtfkeywd.hxx:83
#define OOO_STRING_SVTOOLS_RTF_UP
Definition: rtfkeywd.hxx:376
#define OOO_STRING_SVTOOLS_RTF_CHSHDNG
Definition: rtfkeywd.hxx:786
#define OOO_STRING_SVTOOLS_RTF_OLDB
Definition: rtfkeywd.hxx:1133
#define OOO_STRING_SVTOOLS_RTF_NOBREAK
Definition: rtfkeywd.hxx:394
#define OOO_STRING_SVTOOLS_RTF_TRBRDRV
Definition: rtfkeywd.hxx:704
#define OOO_STRING_SVTOOLS_RTF_OLHWAVE
Definition: rtfkeywd.hxx:1148
#define OOO_STRING_SVTOOLS_RTF_OBJECT
Definition: rtfkeywd.hxx:598
#define OOO_STRING_SVTOOLS_RTF_MARGLSXN
Definition: rtfkeywd.hxx:230
#define OOO_STRING_SVTOOLS_RTF_PGNZODIACD
Definition: rtfkeywd.hxx:941
#define OOO_STRING_SVTOOLS_RTF_PNRESTART
Definition: rtfkeywd.hxx:649
#define OOO_STRING_SVTOOLS_RTF_REVAUTH
Definition: rtfkeywd.hxx:670
#define OOO_STRING_SVTOOLS_RTF_DPFILLFGCG
Definition: rtfkeywd.hxx:499
#define OOO_STRING_SVTOOLS_RTF_DNTBLNSBDB
Definition: rtfkeywd.hxx:816
#define OOO_STRING_SVTOOLS_RTF_ALT
Definition: rtfkeywd.hxx:30
#define OOO_STRING_SVTOOLS_RTF_POSXL
Definition: rtfkeywd.hxx:291
#define OOO_STRING_SVTOOLS_RTF_FID
Definition: rtfkeywd.hxx:540
#define OOO_STRING_SVTOOLS_RTF_SHDWDIST
Definition: rtfkeywd.hxx:1109
#define OOO_STRING_SVTOOLS_RTF_HYPHCAPS
Definition: rtfkeywd.hxx:574
#define OOO_STRING_SVTOOLS_RTF_CHDPA
Definition: rtfkeywd.hxx:86
#define OOO_STRING_SVTOOLS_RTF_FPRQ
Definition: rtfkeywd.hxx:173
#define OOO_STRING_SVTOOLS_RTF_FFRES
Definition: rtfkeywd.hxx:840
#define OOO_STRING_SVTOOLS_RTF_PNUCLTR
Definition: rtfkeywd.hxx:658
#define OOO_STRING_SVTOOLS_RTF_ABSNOOVRLP
Definition: rtfkeywd.hxx:138
#define OOO_STRING_SVTOOLS_RTF_ULULDBWAVE
Definition: rtfkeywd.hxx:1052
#define OOO_STRING_SVTOOLS_RTF_AFTNNZODIACD
Definition: rtfkeywd.hxx:736
#define OOO_STRING_SVTOOLS_RTF_NOTABIND
Definition: rtfkeywd.hxx:587
#define OOO_STRING_SVTOOLS_RTF_SN
Definition: rtfkeywd.hxx:1126
#define OOO_STRING_SVTOOLS_RTF_PGBRDRHEAD
Definition: rtfkeywd.hxx:925
#define OOO_STRING_SVTOOLS_RTF_PNSP
Definition: rtfkeywd.hxx:652
#define OOO_STRING_SVTOOLS_RTF_DPCOSMARTA
Definition: rtfkeywd.hxx:485
#define OOO_STRING_SVTOOLS_RTF_RTLMARK
Definition: rtfkeywd.hxx:681
#define OOO_STRING_SVTOOLS_RTF_PICCROPT
Definition: rtfkeywd.hxx:275
#define OOO_STRING_SVTOOLS_RTF_FBIDI
Definition: rtfkeywd.hxx:538
#define OOO_STRING_SVTOOLS_RTF_SOFTLHEIGHT
Definition: rtfkeywd.hxx:690
#define OOO_STRING_SVTOOLS_RTF_LTRDOC
Definition: rtfkeywd.hxx:580
#define OOO_STRING_SVTOOLS_RTF_FTNNGBNUML
Definition: rtfkeywd.hxx:860
#define OOO_STRING_SVTOOLS_RTF_AFTNSEP
Definition: rtfkeywd.hxx:421
#define OOO_STRING_SVTOOLS_RTF_REVBAR
Definition: rtfkeywd.hxx:311
#define OOO_STRING_SVTOOLS_RTF_FORMDISP
Definition: rtfkeywd.hxx:547
#define OOO_STRING_SVTOOLS_RTF_SHDWFCOL
Definition: rtfkeywd.hxx:1112
#define OOO_STRING_SVTOOLS_RTF_PICHGOAL
Definition: rtfkeywd.hxx:277
#define OOO_STRING_SVTOOLS_RTF_BUPTIM
Definition: rtfkeywd.hxx:75
#define OOO_STRING_SVTOOLS_RTF_SHPZ
Definition: rtfkeywd.hxx:1007
#define OOO_STRING_SVTOOLS_RTF_MANAGER
Definition: rtfkeywd.hxx:906
#define OOO_STRING_SVTOOLS_RTF_RSLTMERGE
Definition: rtfkeywd.hxx:675
#define OOO_STRING_SVTOOLS_RTF_CLPADL
Definition: rtfkeywd.hxx:787
#define OOO_STRING_SVTOOLS_RTF_AFTNNDBNUM
Definition: rtfkeywd.hxx:726
#define OOO_STRING_SVTOOLS_RTF_DPCOA
Definition: rtfkeywd.hxx:473
#define OOO_STRING_SVTOOLS_RTF_GREEN
Definition: rtfkeywd.hxx:187
#define OOO_STRING_SVTOOLS_RTF_LEVELPREV
Definition: rtfkeywd.hxx:883
#define OOO_STRING_SVTOOLS_RTF_BRDRWAVY
Definition: rtfkeywd.hxx:766
#define OOO_STRING_SVTOOLS_RTF_TQL
Definition: rtfkeywd.hxx:361
#define OOO_STRING_SVTOOLS_RTF_FTNNDBNUM
Definition: rtfkeywd.hxx:852
#define OOO_STRING_SVTOOLS_RTF_PNRRGB
Definition: rtfkeywd.hxx:962
#define OOO_STRING_SVTOOLS_RTF_AFS
Definition: rtfkeywd.hxx:404
#define OOO_STRING_SVTOOLS_RTF_BGFDIAG
Definition: rtfkeywd.hxx:46
#define OOO_STRING_SVTOOLS_RTF_PNINDENT
Definition: rtfkeywd.hxx:635
#define OOO_STRING_SVTOOLS_RTF_PGDSC
Definition: rtfkeywd.hxx:1114
#define OOO_STRING_SVTOOLS_RTF_IGNORE
Definition: rtfkeywd.hxx:25
#define OOO_STRING_SVTOOLS_RTF_NOSNAPLINEGRID
Definition: rtfkeywd.hxx:912
#define OOO_STRING_SVTOOLS_RTF_OLW
Definition: rtfkeywd.hxx:1135
#define OOO_STRING_SVTOOLS_RTF_SHIFT
Definition: rtfkeywd.hxx:337
#define OOO_STRING_SVTOOLS_RTF_OLTH
Definition: rtfkeywd.hxx:1139
#define OOO_STRING_SVTOOLS_RTF_FAVAR
Definition: rtfkeywd.hxx:1067
#define OOO_STRING_SVTOOLS_RTF_PGNGBNUMD
Definition: rtfkeywd.hxx:937
#define OOO_STRING_SVTOOLS_RTF_PICPROP
Definition: rtfkeywd.hxx:943
#define OOO_STRING_SVTOOLS_RTF_LQUOTE
Definition: rtfkeywd.hxx:223
#define OOO_STRING_SVTOOLS_RTF_PGNCNUM
Definition: rtfkeywd.hxx:932
#define OOO_STRING_SVTOOLS_RTF_COLORTBL
Definition: rtfkeywd.hxx:115
#define OOO_STRING_SVTOOLS_RTF_UD
Definition: rtfkeywd.hxx:1019
#define OOO_STRING_SVTOOLS_RTF_LISTID
Definition: rtfkeywd.hxx:890
#define OOO_STRING_SVTOOLS_RTF_DPCODTOP
Definition: rtfkeywd.hxx:480
#define OOO_STRING_SVTOOLS_RTF_OBJLINK
Definition: rtfkeywd.hxx:602
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTX
Definition: rtfkeywd.hxx:130
#define OOO_STRING_SVTOOLS_RTF_SHPWRK
Definition: rtfkeywd.hxx:1005
#define OOO_STRING_SVTOOLS_RTF_BKMKPUB
Definition: rtfkeywd.hxx:445
#define OOO_STRING_SVTOOLS_RTF_NOWIDCTLPAR
Definition: rtfkeywd.hxx:588
#define OOO_STRING_SVTOOLS_RTF_SBKNONE
Definition: rtfkeywd.hxx:328
#define OOO_STRING_SVTOOLS_RTF_TLUL
Definition: rtfkeywd.hxx:357
#define OOO_STRING_SVTOOLS_RTF_AFTNCN
Definition: rtfkeywd.hxx:406
#define OOO_STRING_SVTOOLS_RTF_SOFTLINE
Definition: rtfkeywd.hxx:691
#define OOO_STRING_SVTOOLS_RTF_BRDRDASHSM
Definition: rtfkeywd.hxx:749
#define OOO_STRING_SVTOOLS_RTF_DPCOTRIGHT
Definition: rtfkeywd.hxx:487
#define OOO_STRING_SVTOOLS_RTF_CLBGVERT
Definition: rtfkeywd.hxx:104
#define OOO_STRING_SVTOOLS_RTF_CLBGDKHOR
Definition: rtfkeywd.hxx:100
#define OOO_STRING_SVTOOLS_RTF_BKMKCOLF
Definition: rtfkeywd.hxx:52
#define OOO_STRING_SVTOOLS_RTF_CLBGHORIZ
Definition: rtfkeywd.hxx:103
#define OOO_STRING_SVTOOLS_RTF_RTLROW
Definition: rtfkeywd.hxx:683
#define OOO_STRING_SVTOOLS_RTF_ADN
Definition: rtfkeywd.hxx:399
#define OOO_STRING_SVTOOLS_RTF_DPLINEDADO
Definition: rtfkeywd.hxx:509
#define OOO_STRING_SVTOOLS_RTF_CHBGDKCROSS
Definition: rtfkeywd.hxx:775
#define OOO_STRING_SVTOOLS_RTF_COMMENT
Definition: rtfkeywd.hxx:121
#define OOO_STRING_SVTOOLS_RTF_SUBENTRY
Definition: rtfkeywd.hxx:27
#define OOO_STRING_SVTOOLS_RTF_OBJSCALEX
Definition: rtfkeywd.hxx:606
#define OOO_STRING_SVTOOLS_RTF_FFRECALC
Definition: rtfkeywd.hxx:839
#define OOO_STRING_SVTOOLS_RTF_CLPADR
Definition: rtfkeywd.hxx:790
#define OOO_STRING_SVTOOLS_RTF_RSLTTXT
Definition: rtfkeywd.hxx:678
#define OOO_STRING_SVTOOLS_RTF_FSWISS
Definition: rtfkeywd.hxx:178
#define OOO_STRING_SVTOOLS_RTF_AFTNNRUC
Definition: rtfkeywd.hxx:412
#define OOO_STRING_SVTOOLS_RTF_LINESTARTS
Definition: rtfkeywd.hxx:220
#define OOO_STRING_SVTOOLS_RTF_HR
Definition: rtfkeywd.hxx:195
#define OOO_STRING_SVTOOLS_RTF_LINERESTART
Definition: rtfkeywd.hxx:218
#define OOO_STRING_SVTOOLS_RTF_FMODERN
Definition: rtfkeywd.hxx:163
#define OOO_STRING_SVTOOLS_RTF_POSNEGY
Definition: rtfkeywd.hxx:287
#define OOO_STRING_SVTOOLS_RTF_PGBRDRB
Definition: rtfkeywd.hxx:923
#define OOO_STRING_SVTOOLS_RTF_SECTUNLOCKED
Definition: rtfkeywd.hxx:687
#define OOO_STRING_SVTOOLS_RTF_FLYPRINT
Definition: rtfkeywd.hxx:1093
#define OOO_STRING_SVTOOLS_RTF_FTNNCHI
Definition: rtfkeywd.hxx:557
#define OOO_STRING_SVTOOLS_RTF_DPCODABS
Definition: rtfkeywd.hxx:477
#define OOO_STRING_SVTOOLS_RTF_PRCOLBL
Definition: rtfkeywd.hxx:665
#define OOO_STRING_SVTOOLS_RTF_LINEMOD
Definition: rtfkeywd.hxx:216
#define OOO_STRING_SVTOOLS_RTF_LISTTEMPLATEID
Definition: rtfkeywd.hxx:901
#define OOO_STRING_SVTOOLS_RTF_PANOSE
Definition: rtfkeywd.hxx:922
#define OOO_STRING_SVTOOLS_RTF_NONSHPPICT
Definition: rtfkeywd.hxx:910
#define OOO_STRING_SVTOOLS_RTF_HEADERYB
Definition: rtfkeywd.hxx:1079
#define OOO_STRING_SVTOOLS_RTF_ENDASH
Definition: rtfkeywd.hxx:143
#define OOO_STRING_SVTOOLS_RTF_RDBLQUOTE
Definition: rtfkeywd.hxx:309
#define OOO_STRING_SVTOOLS_RTF_WPSP
Definition: rtfkeywd.hxx:1036
#define OOO_STRING_SVTOOLS_RTF_DPCOTSINGLE
Definition: rtfkeywd.hxx:488
#define OOO_STRING_SVTOOLS_RTF_PLAIN
Definition: rtfkeywd.hxx:284
#define OOO_STRING_SVTOOLS_RTF_GRFALIGNV
Definition: rtfkeywd.hxx:1076
#define OOO_STRING_SVTOOLS_RTF_TRBRDRB
Definition: rtfkeywd.hxx:699
#define OOO_STRING_SVTOOLS_RTF_PNRSTART
Definition: rtfkeywd.hxx:963
#define OOO_STRING_SVTOOLS_RTF_PAPERH
Definition: rtfkeywd.hxx:250
#define OOO_STRING_SVTOOLS_RTF_SHPPICT
Definition: rtfkeywd.hxx:1000
#define OOO_STRING_SVTOOLS_RTF_FOOTERXL
Definition: rtfkeywd.hxx:1083
#define OOO_STRING_SVTOOLS_RTF_PNGBNUM
Definition: rtfkeywd.hxx:953
#define OOO_STRING_SVTOOLS_RTF_PRIVATE
Definition: rtfkeywd.hxx:972
#define OOO_STRING_SVTOOLS_RTF_BRDRTNTHSG
Definition: rtfkeywd.hxx:761
#define OOO_STRING_SVTOOLS_RTF_BULLET
Definition: rtfkeywd.hxx:74
#define OOO_STRING_SVTOOLS_RTF_CLTXTBRLV
Definition: rtfkeywd.hxx:802
#define OOO_STRING_SVTOOLS_RTF_FTNSEPC
Definition: rtfkeywd.hxx:184
#define OOO_STRING_SVTOOLS_RTF_UPR
Definition: rtfkeywd.hxx:1027
#define OOO_STRING_SVTOOLS_RTF_PGNGBNUMK
Definition: rtfkeywd.hxx:938
#define OOO_STRING_SVTOOLS_RTF_LISTSIMPLE
Definition: rtfkeywd.hxx:899
#define OOO_STRING_SVTOOLS_RTF_VIEWKIND
Definition: rtfkeywd.hxx:1029
#define OOO_STRING_SVTOOLS_RTF_FALT
Definition: rtfkeywd.hxx:152
#define OOO_STRING_SVTOOLS_RTF_DOBYPARA
Definition: rtfkeywd.hxx:458
#define OOO_STRING_SVTOOLS_RTF_PNI
Definition: rtfkeywd.hxx:634
#define OOO_STRING_SVTOOLS_RTF_SBKPAGE
Definition: rtfkeywd.hxx:330
#define OOO_STRING_SVTOOLS_RTF_HEADERXL
Definition: rtfkeywd.hxx:1080
#define OOO_STRING_SVTOOLS_RTF_BRDRTRIPLE
Definition: rtfkeywd.hxx:765
#define OOO_STRING_SVTOOLS_RTF_CLVERTALB
Definition: rtfkeywd.hxx:797
#define OOO_STRING_SVTOOLS_RTF_FVALIDMAC
Definition: rtfkeywd.hxx:571
#define OOO_STRING_SVTOOLS_RTF_BRDRDB
Definition: rtfkeywd.hxx:62
#define OOO_STRING_SVTOOLS_RTF_PNSTRIKE
Definition: rtfkeywd.hxx:654
#define OOO_STRING_SVTOOLS_RTF_ULDB
Definition: rtfkeywd.hxx:373
#define OOO_STRING_SVTOOLS_RTF_CLCBPAT
Definition: rtfkeywd.hxx:109
#define OOO_STRING_SVTOOLS_RTF_BGDKDCROSS
Definition: rtfkeywd.hxx:42
#define OOO_STRING_SVTOOLS_RTF_EDMINS
Definition: rtfkeywd.hxx:141
#define OOO_STRING_SVTOOLS_RTF_COLW
Definition: rtfkeywd.hxx:120
#define OOO_STRING_SVTOOLS_RTF_PROPTYPE
Definition: rtfkeywd.hxx:974
#define OOO_STRING_SVTOOLS_RTF_FFHELPTEXT
Definition: rtfkeywd.hxx:831
#define OOO_STRING_SVTOOLS_RTF_AFTNNCHOSUNG
Definition: rtfkeywd.hxx:723
#define OOO_STRING_SVTOOLS_RTF_BRDRDASH
Definition: rtfkeywd.hxx:64
#define OOO_STRING_SVTOOLS_RTF_ULWAVE
Definition: rtfkeywd.hxx:1024
#define OOO_STRING_SVTOOLS_RTF_PROPNAME
Definition: rtfkeywd.hxx:973
#define OOO_STRING_SVTOOLS_RTF_SHDWCOL
Definition: rtfkeywd.hxx:1111
#define OOO_STRING_SVTOOLS_RTF_LNDSCPSXN
Definition: rtfkeywd.hxx:222
#define OOO_STRING_SVTOOLS_RTF_REVTBL
Definition: rtfkeywd.hxx:673
#define OOO_STRING_SVTOOLS_RTF_PICCROPB
Definition: rtfkeywd.hxx:272
#define OOO_STRING_SVTOOLS_RTF_PNZODIACL
Definition: rtfkeywd.hxx:968
#define OOO_STRING_SVTOOLS_RTF_HLINKBASE
Definition: rtfkeywd.hxx:869
#define OOO_STRING_SVTOOLS_RTF_SHPBYPARA
Definition: rtfkeywd.hxx:991
#define OOO_STRING_SVTOOLS_RTF_BGDKFDIAG
Definition: rtfkeywd.hxx:43
#define OOO_STRING_SVTOOLS_RTF_RSLTRTF
Definition: rtfkeywd.hxx:677
#define OOO_STRING_SVTOOLS_RTF_FORMFIELD
Definition: rtfkeywd.hxx:847
#define OOO_STRING_SVTOOLS_RTF_FFSIZE
Definition: rtfkeywd.hxx:841
#define OOO_STRING_SVTOOLS_RTF_ENDNHERE
Definition: rtfkeywd.hxx:145
#define OOO_STRING_SVTOOLS_RTF_DPARCFLIPY
Definition: rtfkeywd.hxx:467
#define OOO_STRING_SVTOOLS_RTF_U
Definition: rtfkeywd.hxx:1026
#define OOO_STRING_SVTOOLS_RTF_FTNCN
Definition: rtfkeywd.hxx:181
#define OOO_STRING_SVTOOLS_RTF_SHPLOCKANCHOR
Definition: rtfkeywd.hxx:999
#define OOO_STRING_SVTOOLS_RTF_ULC
Definition: rtfkeywd.hxx:1025
#define OOO_STRING_SVTOOLS_RTF_FTNNALC
Definition: rtfkeywd.hxx:554
#define OOO_STRING_SVTOOLS_RTF_FFDEFRES
Definition: rtfkeywd.hxx:825
#define OOO_STRING_SVTOOLS_RTF_POSXO
Definition: rtfkeywd.hxx:292
#define OOO_STRING_SVTOOLS_RTF_CHBRDR
Definition: rtfkeywd.hxx:783
#define OOO_STRING_SVTOOLS_RTF_LISTRESTARTHDN
Definition: rtfkeywd.hxx:898
#define OOO_STRING_SVTOOLS_RTF_RI
Definition: rtfkeywd.hxx:316
#define OOO_STRING_SVTOOLS_RTF_ADJUSTRIGHT
Definition: rtfkeywd.hxx:722
#define OOO_STRING_SVTOOLS_RTF_FTNNGBNUM
Definition: rtfkeywd.hxx:857
#define OOO_STRING_SVTOOLS_RTF_OLLDASH
Definition: rtfkeywd.hxx:1144
#define OOO_STRING_SVTOOLS_RTF_BRDRENGRAVE
Definition: rtfkeywd.hxx:751
#define OOO_STRING_SVTOOLS_RTF_MAKEBACKUP
Definition: rtfkeywd.hxx:226
#define OOO_STRING_SVTOOLS_RTF_CLBRDRL
Definition: rtfkeywd.hxx:106
#define OOO_STRING_SVTOOLS_RTF_MO
Definition: rtfkeywd.hxx:237
#define OOO_STRING_SVTOOLS_RTF_CLBGDKFDIAG
Definition: rtfkeywd.hxx:99
#define OOO_STRING_SVTOOLS_RTF_CLTXLRTBV
Definition: rtfkeywd.hxx:804
#define OOO_STRING_SVTOOLS_RTF_TRPADDT
Definition: rtfkeywd.hxx:710
#define OOO_STRING_SVTOOLS_RTF_SLMULT
Definition: rtfkeywd.hxx:688
#define OOO_STRING_SVTOOLS_RTF_ULNONE
Definition: rtfkeywd.hxx:374
#define OOO_STRING_SVTOOLS_RTF_PRINTDATA
Definition: rtfkeywd.hxx:666
#define OOO_STRING_SVTOOLS_RTF_AFTNTJ
Definition: rtfkeywd.hxx:424
#define OOO_STRING_SVTOOLS_RTF_DPX
Definition: rtfkeywd.hxx:531
#define OOO_STRING_SVTOOLS_RTF_DPFILLFGGRAY
Definition: rtfkeywd.hxx:501
#define OOO_STRING_SVTOOLS_RTF_OBJCROPR
Definition: rtfkeywd.hxx:595
#define OOO_STRING_SVTOOLS_RTF_AUP
Definition: rtfkeywd.hxx:444
#define OOO_STRING_SVTOOLS_RTF_FLYINPARA
Definition: rtfkeywd.hxx:1107
#define OOO_STRING_SVTOOLS_RTF_NOFWORDS
Definition: rtfkeywd.hxx:242
#define OOO_STRING_SVTOOLS_RTF_TCF
Definition: rtfkeywd.hxx:348
#define OOO_STRING_SVTOOLS_RTF_PICT
Definition: rtfkeywd.hxx:281
#define OOO_STRING_SVTOOLS_RTF_LISTNAME
Definition: rtfkeywd.hxx:892
#define OOO_STRING_SVTOOLS_RTF_TRBRDRH
Definition: rtfkeywd.hxx:700
#define OOO_STRING_SVTOOLS_RTF_TEMPLATE
Definition: rtfkeywd.hxx:350
#define OOO_STRING_SVTOOLS_RTF_SHADING
Definition: rtfkeywd.hxx:336
#define OOO_STRING_SVTOOLS_RTF_LI
Definition: rtfkeywd.hxx:211
#define OOO_STRING_SVTOOLS_RTF_TLDOT
Definition: rtfkeywd.hxx:353
#define OOO_STRING_SVTOOLS_RTF_XEF
Definition: rtfkeywd.hxx:716
#define OOO_STRING_SVTOOLS_RTF_FTECH
Definition: rtfkeywd.hxx:179
#define OOO_STRING_SVTOOLS_RTF_FONTTBL
Definition: rtfkeywd.hxx:166
#define OOO_STRING_SVTOOLS_RTF_DPLINE
Definition: rtfkeywd.hxx:505
#define OOO_STRING_SVTOOLS_RTF_PNCAPS
Definition: rtfkeywd.hxx:627
#define OOO_STRING_SVTOOLS_RTF_AFTNNGBNUM
Definition: rtfkeywd.hxx:731
#define OOO_STRING_SVTOOLS_RTF_POSYC
Definition: rtfkeywd.hxx:296
#define OOO_STRING_SVTOOLS_RTF_FRACWIDTH
Definition: rtfkeywd.hxx:174
#define OOO_STRING_SVTOOLS_RTF_PNGBLIP
Definition: rtfkeywd.hxx:952
#define OOO_STRING_SVTOOLS_RTF_CRDATE
Definition: rtfkeywd.hxx:807
#define OOO_STRING_SVTOOLS_RTF_BGDKCROSS
Definition: rtfkeywd.hxx:41
#define OOO_STRING_SVTOOLS_RTF_DPAENDSOL
Definition: rtfkeywd.hxx:463
#define OOO_STRING_SVTOOLS_RTF_DPFILLPAT
Definition: rtfkeywd.hxx:503
#define OOO_STRING_SVTOOLS_RTF_FACPGSXN
Definition: rtfkeywd.hxx:151
#define OOO_STRING_SVTOOLS_RTF_BRDRBTW
Definition: rtfkeywd.hxx:60
#define OOO_STRING_SVTOOLS_RTF_TRBRDRR
Definition: rtfkeywd.hxx:702
#define OOO_STRING_SVTOOLS_RTF_TRPADDR
Definition: rtfkeywd.hxx:709
#define OOO_STRING_SVTOOLS_RTF_SBKODD
Definition: rtfkeywd.hxx:329
#define OOO_STRING_SVTOOLS_RTF_EMBO
Definition: rtfkeywd.hxx:820
#define OOO_STRING_SVTOOLS_RTF_BRDRTHTNMG
Definition: rtfkeywd.hxx:757
#define OOO_STRING_SVTOOLS_RTF_PGNUCLTR
Definition: rtfkeywd.hxx:264
#define OOO_STRING_SVTOOLS_RTF_PNZODIAC
Definition: rtfkeywd.hxx:966
#define OOO_STRING_SVTOOLS_RTF_PNPREV
Definition: rtfkeywd.hxx:645
#define OOO_STRING_SVTOOLS_RTF_DFRMTXTL
Definition: rtfkeywd.hxx:1099
#define OOO_STRING_SVTOOLS_RTF_MARGT
Definition: rtfkeywd.hxx:234
#define OOO_STRING_SVTOOLS_RTF_FTNRSTPG
Definition: rtfkeywd.hxx:567
#define OOO_STRING_SVTOOLS_RTF_ACF
Definition: rtfkeywd.hxx:397
#define OOO_STRING_SVTOOLS_RTF_FNAME
Definition: rtfkeywd.hxx:846
#define OOO_STRING_SVTOOLS_RTF_BRDRBAR
Definition: rtfkeywd.hxx:59
#define OOO_STRING_SVTOOLS_RTF_DO
Definition: rtfkeywd.hxx:452
#define OOO_STRING_SVTOOLS_RTF_I
Definition: rtfkeywd.hxx:197
#define OOO_STRING_SVTOOLS_RTF_OBJSECT
Definition: rtfkeywd.hxx:608
#define OOO_STRING_SVTOOLS_RTF_FNIL
Definition: rtfkeywd.hxx:165
#define OOO_STRING_SVTOOLS_RTF_HYPHCONSEC
Definition: rtfkeywd.hxx:575
#define OOO_STRING_SVTOOLS_RTF_DPARC
Definition: rtfkeywd.hxx:465
#define OOO_STRING_SVTOOLS_RTF_BGCROSS
Definition: rtfkeywd.hxx:38
#define OOO_STRING_SVTOOLS_RTF_ATNAUTHOR
Definition: rtfkeywd.hxx:433
#define OOO_STRING_SVTOOLS_RTF_OBJCROPT
Definition: rtfkeywd.hxx:596
#define OOO_STRING_SVTOOLS_RTF_WPEQN
Definition: rtfkeywd.hxx:1034
#define OOO_STRING_SVTOOLS_RTF_LINKSTYLES
Definition: rtfkeywd.hxx:578
#define OOO_STRING_SVTOOLS_RTF_OLC
Definition: rtfkeywd.hxx:1141
#define OOO_STRING_SVTOOLS_RTF_PNFS
Definition: rtfkeywd.hxx:632
#define OOO_STRING_SVTOOLS_RTF_YXE
Definition: rtfkeywd.hxx:1037
#define OOO_STRING_SVTOOLS_RTF_PGBRDRR
Definition: rtfkeywd.hxx:928
#define OOO_STRING_SVTOOLS_RTF_PNUL
Definition: rtfkeywd.hxx:660
#define OOO_STRING_SVTOOLS_RTF_FLDPRIV
Definition: rtfkeywd.hxx:161
#define OOO_STRING_SVTOOLS_RTF_TAB
Definition: rtfkeywd.hxx:345
#define OOO_STRING_SVTOOLS_RTF_TWOINONE
Definition: rtfkeywd.hxx:1064
#define OOO_STRING_SVTOOLS_RTF_PARD
Definition: rtfkeywd.hxx:253
#define OOO_STRING_SVTOOLS_RTF_CHBGDKBDIAG
Definition: rtfkeywd.hxx:774
#define OOO_STRING_SVTOOLS_RTF_ATNREF
Definition: rtfkeywd.hxx:435
#define OOO_STRING_SVTOOLS_RTF_ALANG
Definition: rtfkeywd.hxx:426
#define OOO_STRING_SVTOOLS_RTF_TRKEEP
Definition: rtfkeywd.hxx:706
#define OOO_STRING_SVTOOLS_RTF_CHBGDKFDIAG
Definition: rtfkeywd.hxx:777
#define OOO_STRING_SVTOOLS_RTF_PGDSCNO
Definition: rtfkeywd.hxx:1123
#define OOO_STRING_SVTOOLS_RTF_TCL
Definition: rtfkeywd.hxx:349
#define OOO_STRING_SVTOOLS_RTF_ADEFF
Definition: rtfkeywd.hxx:1058
#define OOO_STRING_SVTOOLS_RTF_MARGB
Definition: rtfkeywd.hxx:227
#define OOO_STRING_SVTOOLS_RTF_LEVELJC
Definition: rtfkeywd.hxx:877
#define OOO_STRING_SVTOOLS_RTF_ULW
Definition: rtfkeywd.hxx:375
#define OOO_STRING_SVTOOLS_RTF_LEVELSPACE
Definition: rtfkeywd.hxx:885
#define OOO_STRING_SVTOOLS_RTF_FTNNAUC
Definition: rtfkeywd.hxx:556
#define OOO_STRING_SVTOOLS_RTF_DEFF
Definition: rtfkeywd.hxx:125
#define OOO_STRING_SVTOOLS_RTF_PGBRDRT
Definition: rtfkeywd.hxx:930
#define OOO_STRING_SVTOOLS_RTF_ULDASHDD
Definition: rtfkeywd.hxx:1022
@ RTF_BGFDIAG
Definition: rtftoken.h:904
@ RTF_CHBGDKFDIAG
Definition: rtftoken.h:706
@ RTF_LISTTEXT
Definition: rtftoken.h:567
@ RTF_NOEXTRASPRL
Definition: rtftoken.h:351
@ RTF_AFTNNALC
Definition: rtftoken.h:309
@ RTF_GUTTER
Definition: rtftoken.h:296
@ RTF_AFTNNCHOSUNG
Definition: rtftoken.h:403
@ RTF_AENDDOC
Definition: rtftoken.h:305
@ RTF_FONTTBL
Definition: rtftoken.h:80
@ RTF_LTRMARK
Definition: rtftoken.h:833
@ RTF_SHPLOCKANCHOR
Definition: rtftoken.h:1086
@ RTF_FVALIDDOS
Definition: rtftoken.h:227
@ RTF_FORMFIELD
Definition: rtftoken.h:250
@ RTF_SHPBXMARGIN
Definition: rtftoken.h:1084
@ RTF_BIN
Definition: rtftoken.h:157
@ RTF_NONBREAKINGHYPHEN
Definition: rtftoken.h:827
@ RTF_OPTIONALHYPHEN
Definition: rtftoken.h:826
@ RTF_PGBRK
Definition: rtftoken.h:1246
@ RTF_TAB
Definition: rtftoken.h:816
@ RTF_AOUTL
Definition: rtftoken.h:769
@ RTF_SA
Definition: rtftoken.h:556
@ RTF_NOSECTEXPAND
Definition: rtftoken.h:738
@ RTF_BINFSXN
Definition: rtftoken.h:441
@ RTF_PNHANG
Definition: rtftoken.h:1154
@ RTF_PGNX
Definition: rtftoken.h:475
@ RTF_SHPBXPAGE
Definition: rtftoken.h:1085
@ RTF_DOBXCOLUMN
Definition: rtftoken.h:995
@ RTF_PGNGBNUMD
Definition: rtftoken.h:512
@ RTF_AFTNNGBNUML
Definition: rtftoken.h:414
@ RTF_TRLEFT
Definition: rtftoken.h:919
@ RTF_OBJHTML
Definition: rtftoken.h:1140
@ RTF_GCW
Definition: rtftoken.h:737
@ RTF_DPLINESOLID
Definition: rtftoken.h:1058
@ RTF_DPLINEW
Definition: rtftoken.h:1059
@ RTF_OL
Definition: rtftoken.h:682
@ RTF_CLTXTBRLV
Definition: rtftoken.h:955
@ RTF_AULNONE
Definition: rtftoken.h:776
@ RTF_BRDRTNTHSG
Definition: rtftoken.h:581
@ RTF_FOOTER_XR
Definition: rtftoken.h:530
@ RTF_SBKPAGE
Definition: rtftoken.h:445
@ RTF_FFSTATTEXT
Definition: rtftoken.h:249
@ RTF_POSYIN
Definition: rtftoken.h:568
@ RTF_OBJCROPR
Definition: rtftoken.h:1113
@ RTF_CHFTNSEPC
Definition: rtftoken.h:808
@ RTF_LISTOVERRIDETABLE
Definition: rtftoken.h:1189
@ RTF_FAHANG
Definition: rtftoken.h:607
@ RTF_PLAIN
Definition: rtftoken.h:661
@ RTF_AENDNOTES
Definition: rtftoken.h:306
@ RTF_CAPS
Definition: rtftoken.h:663
@ RTF_SBYS
Definition: rtftoken.h:545
@ RTF_FFNAME
Definition: rtftoken.h:251
@ RTF_FFENTRYMCR
Definition: rtftoken.h:246
@ RTF_LNDSCPSXN
Definition: rtftoken.h:467
@ RTF_AULD
Definition: rtftoken.h:774
@ RTF_BGHORIZ
Definition: rtftoken.h:902
@ RTF_ABSLOCK
Definition: rtftoken.h:872
@ RTF_FFRECALC
Definition: rtftoken.h:263
@ RTF_PRIVATE
Definition: rtftoken.h:365
@ RTF_SP
Definition: rtftoken.h:1250
@ RTF_ID
Definition: rtftoken.h:113
@ RTF_LINKSELF
Definition: rtftoken.h:231
@ RTF_AFTNNAR
Definition: rtftoken.h:310
@ RTF_CLVMRG
Definition: rtftoken.h:954
@ RTF_TLDOT
Definition: rtftoken.h:627
@ RTF_ASTRIKE
Definition: rtftoken.h:772
@ RTF_FAFIXED
Definition: rtftoken.h:611
@ RTF_SOUTLVL
Definition: rtftoken.h:1247
@ RTF_CLBGFDIAG
Definition: rtftoken.h:978
@ RTF_FFMAXLEN
Definition: rtftoken.h:256
@ RTF_FTNRSTCONT
Definition: rtftoken.h:343
@ RTF_SHPINST
Definition: rtftoken.h:1097
@ RTF_FLY_COLUMN
Definition: rtftoken.h:892
@ RTF_SV
Definition: rtftoken.h:1250
@ RTF_ULNONE
Definition: rtftoken.h:680
@ RTF_BRDRTNTHTNLG
Definition: rtftoken.h:577
@ RTF_SPRSSPBF
Definition: rtftoken.h:359
@ RTF_PAPERW
Definition: rtftoken.h:289
@ RTF_DPASTARTHOL
Definition: rtftoken.h:1010
@ RTF_SHDW_COL
Definition: rtftoken.h:1239
@ RTF_BRDREMBOSS
Definition: rtftoken.h:576
@ RTF_MARGTSXN
Definition: rtftoken.h:464
@ RTF_STEXTFLOW
Definition: rtftoken.h:505
@ RTF_STRIKED
Definition: rtftoken.h:727
@ RTF_OBJCLASS
Definition: rtftoken.h:1110
@ RTF_PNPREV
Definition: rtftoken.h:1166
@ RTF_TROWD
Definition: rtftoken.h:917
@ RTF_LEVELFOLLOW
Definition: rtftoken.h:1199
@ RTF_WBITMAP
Definition: rtftoken.h:161
@ RTF_GRIDTBL
Definition: rtftoken.h:739
@ RTF_TRHDR
Definition: rtftoken.h:937
@ RTF_CLTXLRTB
Definition: rtftoken.h:949
@ RTF_LINKVAL
Definition: rtftoken.h:124
@ RTF_TIME
Definition: rtftoken.h:191
@ RTF_ULDASHD
Definition: rtftoken.h:713
@ RTF_TRPADDFB
Definition: rtftoken.h:943
@ RTF_FLDRSLT
Definition: rtftoken.h:189
@ RTF_ILVL
Definition: rtftoken.h:590
@ RTF_PSOVER
Definition: rtftoken.h:200
@ RTF_OLWAVE
Definition: rtftoken.h:722
@ RTF_ULTHDASH
Definition: rtftoken.h:743
@ RTF_DPPTX
Definition: rtftoken.h:1063
@ RTF_BRDRBAR
Definition: rtftoken.h:643
@ RTF_LEVELSTARTAT
Definition: rtftoken.h:1211
@ RTF_FONTEMB
Definition: rtftoken.h:221
@ RTF_KEYCODE
Definition: rtftoken.h:74
@ RTF_FVALIDMAC
Definition: rtftoken.h:229
@ RTF_OBJSETSIZE
Definition: rtftoken.h:1127
@ RTF_PICBMP
Definition: rtftoken.h:171
@ RTF_DPTXBX
Definition: rtftoken.h:1070
@ RTF_ULWAVE
Definition: rtftoken.h:716
@ RTF_OLNONE
Definition: rtftoken.h:685
@ RTF_BLIPUID
Definition: rtftoken.h:180
@ RTF_PGNCHOSUNG
Definition: rtftoken.h:506
@ RTF_PNRSTART
Definition: rtftoken.h:600
@ RTF_PGDSCTBL
Definition: rtftoken.h:1241
@ RTF_PGNZODIAC
Definition: rtftoken.h:515
@ RTF_RSLTMERGE
Definition: rtftoken.h:1135
@ RTF_DPLINEGRAY
Definition: rtftoken.h:1055
@ RTF_FTNNGBNUML
Definition: rtftoken.h:429
@ RTF_PNULDB
Definition: rtftoken.h:1183
@ RTF_DPCODBOTTOM
Definition: rtftoken.h:1020
@ RTF_ACCDOT
Definition: rtftoken.h:785
@ RTF_SHPBYPAGE
Definition: rtftoken.h:1080
@ RTF_POSXI
Definition: rtftoken.h:859
@ RTF_ULHWAVE
Definition: rtftoken.h:748
@ RTF_NOOVERFLOW
Definition: rtftoken.h:615
@ RTF_MARGB
Definition: rtftoken.h:294
@ RTF_CLPADFR
Definition: rtftoken.h:965
@ RTF_DPCOMINUSY
Definition: rtftoken.h:1025
@ RTF_USERPROPS
Definition: rtftoken.h:119
@ RTF_FLY_INPARA
Definition: rtftoken.h:894
@ RTF_TLHYPH
Definition: rtftoken.h:628
@ RTF_DPTXBXMAR
Definition: rtftoken.h:1071
@ RTF_SHPTOP
Definition: rtftoken.h:1091
@ RTF_DPELLIPSE
Definition: rtftoken.h:1033
@ RTF_CHCFPAT
Definition: rtftoken.h:732
@ RTF_PGNY
Definition: rtftoken.h:476
@ RTF_ULDASHDD
Definition: rtftoken.h:715
@ RTF_SBKNONE
Definition: rtftoken.h:443
@ RTF_TCELLD
Definition: rtftoken.h:947
@ RTF_FOOTERF
Definition: rtftoken.h:490
@ RTF_PSZ
Definition: rtftoken.h:356
@ RTF_SNEXT
Definition: rtftoken.h:70
@ RTF_SL
Definition: rtftoken.h:557
@ RTF_VIEWKIND
Definition: rtftoken.h:395
@ RTF_EMFBLIP
Definition: rtftoken.h:175
@ RTF_CLBGDKVERT
Definition: rtftoken.h:983
@ RTF_LTRPAR
Definition: rtftoken.h:559
@ RTF_XE
Definition: rtftoken.h:135
@ RTF_LISTOVERRIDESTART
Definition: rtftoken.h:1202
@ RTF_PNZODIACD
Definition: rtftoken.h:1225
@ RTF_LISTOVERRIDE
Definition: rtftoken.h:1188
@ RTF_BRDRDASH
Definition: rtftoken.h:654
@ RTF_CHDATE
Definition: rtftoken.h:800
@ RTF_COLW
Definition: rtftoken.h:452
@ RTF_SECT
Definition: rtftoken.h:812
@ RTF_PNCHOSUNG
Definition: rtftoken.h:1214
@ RTF_RSLTPICT
Definition: rtftoken.h:1136
@ RTF_CLTXTBRL
Definition: rtftoken.h:948
@ RTF_LEVELLEGAL
Definition: rtftoken.h:1200
@ RTF_PNQL
Definition: rtftoken.h:1168
@ RTF_CHSHDNG
Definition: rtftoken.h:733
@ RTF_RIN
Definition: rtftoken.h:554
@ RTF_DPCOBORDER
Definition: rtftoken.h:1018
@ RTF_ROW
Definition: rtftoken.h:810
@ RTF_BRDRDASHD
Definition: rtftoken.h:572
@ RTF_PNRESTART
Definition: rtftoken.h:1170
@ RTF_BGDKHORIZ
Definition: rtftoken.h:908
@ RTF_POSXR
Definition: rtftoken.h:862
@ RTF_REVPROP
Definition: rtftoken.h:302
@ RTF_TQDEC
Definition: rtftoken.h:626
@ RTF_SUBDOCUMENT
Definition: rtftoken.h:563
@ RTF_FILE
Definition: rtftoken.h:218
@ RTF_FOOTER_XL
Definition: rtftoken.h:529
@ RTF_PNTXTB
Definition: rtftoken.h:1178
@ RTF_FTNNGBNUM
Definition: rtftoken.h:426
@ RTF_ULTHDASHD
Definition: rtftoken.h:746
@ RTF_SBKCOL
Definition: rtftoken.h:444
@ RTF_UD
Definition: rtftoken.h:239
@ RTF_CLBRDRL
Definition: rtftoken.h:969
@ RTF_FI
Definition: rtftoken.h:550
@ RTF_HICH
Definition: rtftoken.h:781
@ RTF_PNCARD
Definition: rtftoken.h:1149
@ RTF_BLIPUPI
Definition: rtftoken.h:181
@ RTF_BRDRWAVYDB
Definition: rtftoken.h:588
@ RTF_DPY
Definition: rtftoken.h:1075
@ RTF_ABSW
Definition: rtftoken.h:844
@ RTF_LEVEL
Definition: rtftoken.h:543
@ RTF_RTLROW
Definition: rtftoken.h:930
@ RTF_OLTHD
Definition: rtftoken.h:750
@ RTF_LEVELOLD
Definition: rtftoken.h:1195
@ RTF_HEADER
Definition: rtftoken.h:491
@ RTF_BGVERT
Definition: rtftoken.h:903
@ RTF_SB
Definition: rtftoken.h:555
@ RTF_ATNID
Definition: rtftoken.h:131
@ RTF_ZWJ
Definition: rtftoken.h:839
@ RTF_FSCRIPT
Definition: rtftoken.h:86
@ RTF_SHPBYMARGIN
Definition: rtftoken.h:1082
@ RTF_PNSTRIKE
Definition: rtftoken.h:1175
@ RTF_FFL
Definition: rtftoken.h:253
@ RTF_FLDLOCK
Definition: rtftoken.h:186
@ RTF_SBASEDON
Definition: rtftoken.h:69
@ RTF_CVMME
Definition: rtftoken.h:330
@ RTF_POSXL
Definition: rtftoken.h:861
@ RTF_REVBAR
Definition: rtftoken.h:303
@ RTF_ENDNOTES
Definition: rtftoken.h:283
@ RTF_AFTNTJ
Definition: rtftoken.h:320
@ RTF_AUTHOR
Definition: rtftoken.h:98
@ RTF_FOOTERL
Definition: rtftoken.h:488
@ RTF_FAVAR
Definition: rtftoken.h:608
@ RTF_ALANG
Definition: rtftoken.h:768
@ RTF_PN
Definition: rtftoken.h:1145
@ RTF_INTBL
Definition: rtftoken.h:540
@ RTF_FMODERN
Definition: rtftoken.h:85
@ RTF_NOSNAPLINEGRID
Definition: rtftoken.h:605
@ RTF_HYPHCONSEC
Definition: rtftoken.h:347
@ RTF_DODHGT
Definition: rtftoken.h:1001
@ RTF_OBJSCALEY
Definition: rtftoken.h:1125
@ RTF_FTNRSTPG
Definition: rtftoken.h:344
@ RTF_MARGBSXN
Definition: rtftoken.h:465
@ RTF_CHPGN
Definition: rtftoken.h:804
@ RTF_LEVELNORESTART
Definition: rtftoken.h:1193
@ RTF_ALTKEY
Definition: rtftoken.h:76
@ RTF_CLMRG
Definition: rtftoken.h:927
@ RTF_SHIFTKEY
Definition: rtftoken.h:77
@ RTF_B
Definition: rtftoken.h:662
@ RTF_TRPADDB
Definition: rtftoken.h:939
@ RTF_LISTLEVEL
Definition: rtftoken.h:1187
@ RTF_NOULTRLSPC
Definition: rtftoken.h:366
@ RTF_SHADING
Definition: rtftoken.h:899
@ RTF_DPX
Definition: rtftoken.h:1073
@ RTF_NONBREAKINGSPACE
Definition: rtftoken.h:825
@ RTF_BKMKSTART
Definition: rtftoken.h:146
@ RTF_ACF
Definition: rtftoken.h:762
@ RTF_ADJUSTRIGHT
Definition: rtftoken.h:612
@ RTF_SBKODD
Definition: rtftoken.h:447
@ RTF_DPRECT
Definition: rtftoken.h:1065
@ RTF_FLYOUTLOWER
Definition: rtftoken.h:889
@ RTF_HLSRC
Definition: rtftoken.h:1089
@ RTF_SWPBDR
Definition: rtftoken.h:361
@ RTF_SPRSTSM
Definition: rtftoken.h:383
@ RTF_JPEGBLIP
Definition: rtftoken.h:177
@ RTF_MARGR
Definition: rtftoken.h:292
@ RTF_CREATIM
Definition: rtftoken.h:105
@ RTF_PARD
Definition: rtftoken.h:538
@ RTF_BRDRTNTHTNMG
Definition: rtftoken.h:587
@ RTF_QL
Definition: rtftoken.h:546
@ RTF_DPFILLFGCG
Definition: rtftoken.h:1041
@ RTF_FTNNDBNUMT
Definition: rtftoken.h:424
@ RTF_OBJECT
Definition: rtftoken.h:1116
@ RTF_PNTXTA
Definition: rtftoken.h:1177
@ RTF_BRDRCF
Definition: rtftoken.h:647
@ RTF_HIGHLIGHT
Definition: rtftoken.h:267
@ RTF_DFRMTXTY
Definition: rtftoken.h:849
@ RTF_OBJTRANSY
Definition: rtftoken.h:1130
@ RTF_DPCOOFFSET
Definition: rtftoken.h:1026
@ RTF_CLCBPAT
Definition: rtftoken.h:974
@ RTF_AEXPND
Definition: rtftoken.h:764
@ RTF_FLYOUTLEFT
Definition: rtftoken.h:886
@ RTF_ABSH
Definition: rtftoken.h:845
@ RTF_FLYOUTUPPER
Definition: rtftoken.h:888
@ RTF_PICCROPB
Definition: rtftoken.h:167
@ RTF_G
Definition: rtftoken.h:740
@ RTF_SECTNUM
Definition: rtftoken.h:834
@ RTF_SHPRIGHT
Definition: rtftoken.h:1098
@ RTF_ULTHLDASH
Definition: rtftoken.h:745
@ RTF_TLEQ
Definition: rtftoken.h:631
@ RTF_LINESTART
Definition: rtftoken.h:273
@ RTF_DPFILLBGCB
Definition: rtftoken.h:1035
@ RTF_SOFTLINE
Definition: rtftoken.h:837
@ RTF_PGDSCNO
Definition: rtftoken.h:1245
@ RTF_BRDRDASHSM
Definition: rtftoken.h:578
@ RTF_CCHS
Definition: rtftoken.h:693
@ RTF_FLYOPAQUE
Definition: rtftoken.h:881
@ RTF_PRINTIM
Definition: rtftoken.h:107
@ RTF_FTNNAUC
Definition: rtftoken.h:339
@ RTF_AI
Definition: rtftoken.h:767
@ RTF_RTLSECT
Definition: rtftoken.h:503
@ RTF_SHDW_STYLE
Definition: rtftoken.h:1238
@ RTF_FRMTXLRTBV
Definition: rtftoken.h:876
@ RTF_FTNNGANADA
Definition: rtftoken.h:425
@ RTF_BRDRHAIR
Definition: rtftoken.h:653
@ RTF_FIELD
Definition: rtftoken.h:183
@ RTF_PGDSCNXT
Definition: rtftoken.h:1244
@ RTF_PNB
Definition: rtftoken.h:1147
@ RTF_DPSHADOW
Definition: rtftoken.h:1067
@ RTF_HYPHAUTO
Definition: rtftoken.h:345
@ RTF_YXE
Definition: rtftoken.h:140
@ RTF_CLBGDCROSS
Definition: rtftoken.h:981
@ RTF_OLLDASH
Definition: rtftoken.h:752
@ RTF_FFPROT
Definition: rtftoken.h:259
@ RTF_PGBRDRFOOT
Definition: rtftoken.h:390
@ RTF_FRMTXTBRL
Definition: rtftoken.h:874
@ RTF_FTNCN
Definition: rtftoken.h:282
@ RTF_OLW
Definition: rtftoken.h:686
@ RTF_PNFS
Definition: rtftoken.h:1153
@ RTF_I
Definition: rtftoken.h:672
@ RTF_OBJLOCK
Definition: rtftoken.h:1121
@ RTF_REVISIONS
Definition: rtftoken.h:301
@ RTF_PAGE
Definition: rtftoken.h:813
@ RTF_PNDBNUMT
Definition: rtftoken.h:1218
@ RTF_PNSTART
Definition: rtftoken.h:1174
@ RTF_BXE
Definition: rtftoken.h:136
@ RTF_BINSXN
Definition: rtftoken.h:442
@ RTF_DPYSIZE
Definition: rtftoken.h:1076
@ RTF_SHPTXT
Definition: rtftoken.h:1094
@ RTF_NOFPAGES
Definition: rtftoken.h:110
@ RTF_V
Definition: rtftoken.h:689
@ RTF_GUTTERSXN
Definition: rtftoken.h:466
@ RTF_TRBRDRL
Definition: rtftoken.h:933
@ RTF_FTNIL
Definition: rtftoken.h:225
@ RTF_ATNAUTHOR
Definition: rtftoken.h:323
@ RTF_FFDEFTEXT
Definition: rtftoken.h:247
@ RTF_TRPADDL
Definition: rtftoken.h:940
@ RTF_SUBFONTBYSIZE
Definition: rtftoken.h:380
@ RTF_CHBGDKDCROSS
Definition: rtftoken.h:710
@ RTF_FS
Definition: rtftoken.h:671
@ RTF_COMPANY
Definition: rtftoken.h:121
@ RTF_PGNRESTART
Definition: rtftoken.h:474
@ RTF_VERTALT
Definition: rtftoken.h:482
@ RTF_OTBLRUL
Definition: rtftoken.h:353
@ RTF_CHBGDKBDIAG
Definition: rtftoken.h:712
@ RTF_FOOTER_YH
Definition: rtftoken.h:532
@ RTF_SWG_PRTDATA
Definition: rtftoken.h:1234
@ RTF_DIBITMAP
Definition: rtftoken.h:165
@ RTF_WPJST
Definition: rtftoken.h:385
@ RTF_LISTOVERRIDECOUNT
Definition: rtftoken.h:1196
@ RTF_CLBGDKFDIAG
Definition: rtftoken.h:984
@ RTF_CLBGVERT
Definition: rtftoken.h:977
@ RTF_CATEGORY
Definition: rtftoken.h:120
@ RTF_DEFTAB
Definition: rtftoken.h:271
@ RTF_POSYC
Definition: rtftoken.h:871
@ RTF_DEFLANG
Definition: rtftoken.h:279
@ RTF_GRF_MIRROR
Definition: rtftoken.h:1233
@ RTF_U
Definition: rtftoken.h:241
@ RTF_TRANSMF
Definition: rtftoken.h:362
@ RTF_LINECONT
Definition: rtftoken.h:459
@ RTF_AFTNNZODIACD
Definition: rtftoken.h:416
@ RTF_STYLESHEET
Definition: rtftoken.h:68
@ RTF_PICWGOAL
Definition: rtftoken.h:155
@ RTF_NOLEAD
Definition: rtftoken.h:368
@ RTF_LANDSCAPE
Definition: rtftoken.h:298
@ RTF_ACCNONE
Definition: rtftoken.h:784
@ RTF_ATNTIME
Definition: rtftoken.h:326
@ RTF_FDECOR
Definition: rtftoken.h:87
@ RTF_BKMKEND
Definition: rtftoken.h:147
@ RTF_PGNZODIACD
Definition: rtftoken.h:516
@ RTF_FOOTERR
Definition: rtftoken.h:489
@ RTF_BRDRENGRAVE
Definition: rtftoken.h:574
@ RTF_LISTOVERRIDEFORMAT
Definition: rtftoken.h:1206
@ RTF_POSYB
Definition: rtftoken.h:870
@ RTF_ULD
Definition: rtftoken.h:678
@ RTF_FACPGSXN
Definition: rtftoken.h:468
@ RTF_CLPADFB
Definition: rtftoken.h:964
@ RTF_SOFTCOL
Definition: rtftoken.h:835
@ RTF_DPAENDL
Definition: rtftoken.h:1004
@ RTF_PHCOL
Definition: rtftoken.h:855
@ RTF_COLUM
Definition: rtftoken.h:814
@ RTF_BRDRBTW
Definition: rtftoken.h:642
@ RTF_DPARCFLIPY
Definition: rtftoken.h:1009
@ RTF_UP
Definition: rtftoken.h:687
@ RTF_RTLPAR
Definition: rtftoken.h:561
@ RTF_REVPROT
Definition: rtftoken.h:357
@ RTF_QJ
Definition: rtftoken.h:548
@ RTF_DPAENDSOL
Definition: rtftoken.h:1005
@ RTF_DELETED
Definition: rtftoken.h:202
@ RTF_DPSHADX
Definition: rtftoken.h:1068
@ RTF_DEFLANGFE
Definition: rtftoken.h:392
@ RTF_AFTNNGBNUM
Definition: rtftoken.h:411
@ RTF_SECTUNLOCKED
Definition: rtftoken.h:504
@ RTF_LTRROW
Definition: rtftoken.h:929
@ RTF_ASPALPHA
Definition: rtftoken.h:616
@ RTF_CGRID
Definition: rtftoken.h:736
@ RTF_BRDRTRIPLE
Definition: rtftoken.h:585
@ RTF_FAROMAN
Definition: rtftoken.h:610
@ RTF_SECTD
Definition: rtftoken.h:439
@ RTF_SHPLEFT
Definition: rtftoken.h:1102
@ RTF_PNLVLBLT
Definition: rtftoken.h:1160
@ RTF_PCTYPE
Definition: rtftoken.h:64
@ RTF_FORMULA
Definition: rtftoken.h:824
@ RTF_SPRSBSP
Definition: rtftoken.h:376
@ RTF_PNGBNUMK
Definition: rtftoken.h:1222
@ RTF_DXFRTEXT
Definition: rtftoken.h:847
@ RTF_ULDASH
Definition: rtftoken.h:714
@ RTF_PNSP
Definition: rtftoken.h:1173
@ RTF_BRDRTH
Definition: rtftoken.h:649
@ RTF_TITLEPG
Definition: rtftoken.h:469
@ RTF_F
Definition: rtftoken.h:670
@ RTF_WBMPLANES
Definition: rtftoken.h:153
@ RTF_FID
Definition: rtftoken.h:217
@ RTF_DPLINEDOT
Definition: rtftoken.h:1054
@ RTF_BRKFRM
Definition: rtftoken.h:329
@ RTF_AFTNBJ
Definition: rtftoken.h:307
@ RTF_ENDNHERE
Definition: rtftoken.h:440
@ RTF_PNLVLCONT
Definition: rtftoken.h:1162
@ RTF_DOBXMARGIN
Definition: rtftoken.h:996
@ RTF_DPENDGROUP
Definition: rtftoken.h:1034
@ RTF_PNTEXT
Definition: rtftoken.h:1176
@ RTF_CLBGBDIAG
Definition: rtftoken.h:979
@ RTF_OLD
Definition: rtftoken.h:683
@ RTF_PVPG
Definition: rtftoken.h:864
@ RTF_HEADERL
Definition: rtftoken.h:492
@ RTF_TRRH
Definition: rtftoken.h:920
@ RTF_FTNTJ
Definition: rtftoken.h:285
@ RTF_PNLCRM
Definition: rtftoken.h:1158
@ RTF_PRINTDATA
Definition: rtftoken.h:355
@ RTF_PICCROPL
Definition: rtftoken.h:168
@ RTF_OLDLINEWRAP
Definition: rtftoken.h:389
@ RTF_TQC
Definition: rtftoken.h:625
@ RTF_SHAD
Definition: rtftoken.h:675
@ RTF_PNGANADA
Definition: rtftoken.h:1219
@ RTF_LEVELSPACE
Definition: rtftoken.h:1209
@ RTF_HLLOC
Definition: rtftoken.h:1088
@ RTF_PGNHNSP
Definition: rtftoken.h:502
@ RTF_EMBO
Definition: rtftoken.h:725
@ RTF_SUBENTRYINDEX
Definition: rtftoken.h:828
@ RTF_SECTEXPAND
Definition: rtftoken.h:519
@ RTF_TWOINONE
Definition: rtftoken.h:787
@ RTF_SUBJECT
Definition: rtftoken.h:97
@ RTF_CLVERTALC
Definition: rtftoken.h:952
@ RTF_FOSNUM
Definition: rtftoken.h:223
@ RTF_FTNNGBNUMD
Definition: rtftoken.h:427
@ RTF_DPLINEHOLLOW
Definition: rtftoken.h:1056
@ RTF_MSMCAP
Definition: rtftoken.h:367
@ RTF_CHFTNSEP
Definition: rtftoken.h:807
@ RTF_PGDSCUSE
Definition: rtftoken.h:1243
@ RTF_TRBRDRV
Definition: rtftoken.h:936
@ RTF_RI
Definition: rtftoken.h:553
@ RTF_PGNDBNUMK
Definition: rtftoken.h:508
@ RTF_BRDRWAVY
Definition: rtftoken.h:589
@ RTF_FTNSEP
Definition: rtftoken.h:280
@ RTF_OLTH
Definition: rtftoken.h:724
@ RTF_COMMENT
Definition: rtftoken.h:101
@ RTF_DOCTYPE
Definition: rtftoken.h:393
@ RTF_WINDOWCAPTION
Definition: rtftoken.h:397
@ RTF_FLYPRTCTD
Definition: rtftoken.h:882
@ RTF_OBJALIGN
Definition: rtftoken.h:1108
@ RTF_RTF
Definition: rtftoken.h:61
@ RTF_PICCROPT
Definition: rtftoken.h:166
@ RTF_DPGROUP
Definition: rtftoken.h:1046
@ RTF_PGNUCRM
Definition: rtftoken.h:478
@ RTF_FNAME
Definition: rtftoken.h:208
@ RTF_GREEN
Definition: rtftoken.h:92
@ RTF_CLBGDKCROSS
Definition: rtftoken.h:986
@ RTF_TB
Definition: rtftoken.h:622
@ RTF_CLPADL
Definition: rtftoken.h:958
@ RTF_PGNZODIACL
Definition: rtftoken.h:517
@ RTF_FROMAN
Definition: rtftoken.h:83
@ RTF_OLDASHD
Definition: rtftoken.h:719
@ RTF_GRF_ALIGNH
Definition: rtftoken.h:1232
@ RTF_PGBRDRT
Definition: rtftoken.h:375
@ RTF_PGBRDRB
Definition: rtftoken.h:386
@ RTF_PGNLCLTR
Definition: rtftoken.h:481
@ RTF_PNULD
Definition: rtftoken.h:1182
@ RTF_CLVERTALB
Definition: rtftoken.h:950
@ RTF_CHARSCALEX
Definition: rtftoken.h:730
@ RTF_HEADERR
Definition: rtftoken.h:493
@ RTF_BRDRTHTNMG
Definition: rtftoken.h:579
@ RTF_MARGL
Definition: rtftoken.h:291
@ RTF_FTNNZODIAC
Definition: rtftoken.h:430
@ RTF_CPG
Definition: rtftoken.h:213
@ RTF_NEXTTYPE
Definition: rtftoken.h:66
@ RTF_FLYMAINCNT
Definition: rtftoken.h:883
@ RTF_HYPHMAX
Definition: rtftoken.h:795
@ RTF_KEEPN
Definition: rtftoken.h:542
@ RTF_ATNICN
Definition: rtftoken.h:324
@ RTF_DATE
Definition: rtftoken.h:192
@ RTF_DROPCAPT
Definition: rtftoken.h:851
@ RTF_DPLINECOB
Definition: rtftoken.h:1048
@ RTF_PGDSC
Definition: rtftoken.h:1242
@ RTF_CELL
Definition: rtftoken.h:809
@ RTF_CLBRDRT
Definition: rtftoken.h:968
@ RTF_AFTNNDBNUM
Definition: rtftoken.h:406
@ RTF_PGNUCLTR
Definition: rtftoken.h:480
@ RTF_NONSHPPICT
Definition: rtftoken.h:178
@ RTF_FTNNZODIACL
Definition: rtftoken.h:432
@ RTF_HYPHHOTZ
Definition: rtftoken.h:272
@ RTF_PGNHNSH
Definition: rtftoken.h:499
@ RTF_SEC
Definition: rtftoken.h:235
@ RTF_DOCTEMP
Definition: rtftoken.h:201
@ RTF_OBJCROPT
Definition: rtftoken.h:1114
@ RTF_ADEFF
Definition: rtftoken.h:435
@ RTF_LISTTABLE
Definition: rtftoken.h:1190
@ RTF_CHBRDR
Definition: rtftoken.h:703
@ RTF_OUTL
Definition: rtftoken.h:673
@ RTF_PGNGBNUM
Definition: rtftoken.h:511
@ RTF_FTNBJ
Definition: rtftoken.h:286
@ RTF_BRDRTNTHLG
Definition: rtftoken.h:584
@ RTF_HYPHCAPS
Definition: rtftoken.h:346
@ RTF_KEYWORDS
Definition: rtftoken.h:100
@ RTF_CLMGF
Definition: rtftoken.h:926
@ RTF_SHPBXCOLUMN
Definition: rtftoken.h:1083
@ RTF_DGMARGIN
Definition: rtftoken.h:402
@ RTF_OLDASH
Definition: rtftoken.h:720
@ RTF_FTNNCNUM
Definition: rtftoken.h:419
@ RTF_FORMSHADE
Definition: rtftoken.h:335
@ RTF_BDBFHDR
Definition: rtftoken.h:379
@ RTF_HEADERY
Definition: rtftoken.h:470
@ RTF_UL
Definition: rtftoken.h:677
@ RTF_FNIL
Definition: rtftoken.h:82
@ RTF_FFRES
Definition: rtftoken.h:264
@ RTF_PNLVL
Definition: rtftoken.h:1159
@ RTF_SLMULT
Definition: rtftoken.h:562
@ RTF_DPCOLENGTH
Definition: rtftoken.h:1023
@ RTF_SHPBOTTOM
Definition: rtftoken.h:1101
@ RTF_DPFILLBGCR
Definition: rtftoken.h:1037
@ RTF_MARGRSXN
Definition: rtftoken.h:463
@ RTF_AFTNSEPC
Definition: rtftoken.h:318
@ RTF_PGNCNUM
Definition: rtftoken.h:507
@ RTF_FTNNCHOSUNG
Definition: rtftoken.h:418
@ RTF_LIST
Definition: rtftoken.h:1186
@ RTF_LTRCH
Definition: rtftoken.h:695
@ RTF_AFTNNGBNUMD
Definition: rtftoken.h:412
@ RTF_OBJOCX
Definition: rtftoken.h:1139
@ RTF_TLTH
Definition: rtftoken.h:630
@ RTF_EMSPACE
Definition: rtftoken.h:831
@ RTF_LEVELINDENT
Definition: rtftoken.h:1198
@ RTF_AB
Definition: rtftoken.h:760
@ RTF_LQUOTE
Definition: rtftoken.h:820
@ RTF_BRDRR
Definition: rtftoken.h:641
@ RTF_DEFF
Definition: rtftoken.h:81
@ RTF_VIEWZK
Definition: rtftoken.h:399
@ RTF_PROPTYPE
Definition: rtftoken.h:128
@ RTF_MAKEBACKUP
Definition: rtftoken.h:277
@ RTF_REVDTTMDEL
Definition: rtftoken.h:735
@ RTF_DY
Definition: rtftoken.h:116
@ RTF_HEADER_XR
Definition: rtftoken.h:527
@ RTF_S
Definition: rtftoken.h:539
@ RTF_MO
Definition: rtftoken.h:115
@ RTF_PICSCALED
Definition: rtftoken.h:160
@ RTF_SPRSLNSP
Definition: rtftoken.h:382
@ RTF_OBJEMB
Definition: rtftoken.h:1117
@ RTF_CLBGHORIZ
Definition: rtftoken.h:976
@ RTF_TRQR
Definition: rtftoken.h:923
@ RTF_ULLDASH
Definition: rtftoken.h:744
@ RTF_DEFFORMAT
Definition: rtftoken.h:278
@ RTF_TCN
Definition: rtftoken.h:236
@ RTF_CFPAT
Definition: rtftoken.h:900
@ RTF_AFTNRSTCONT
Definition: rtftoken.h:316
@ RTF_TRGAPH
Definition: rtftoken.h:918
@ RTF_PNF
Definition: rtftoken.h:1152
@ RTF_SWG_ESCPROP
Definition: rtftoken.h:791
@ RTF_AFTNSTART
Definition: rtftoken.h:319
@ RTF_FLY_PAGE
Definition: rtftoken.h:893
@ RTF_DPFILLBGCG
Definition: rtftoken.h:1036
@ RTF_DBCH
Definition: rtftoken.h:782
@ RTF_FTNNGBNUMK
Definition: rtftoken.h:428
@ RTF_PNINDENT
Definition: rtftoken.h:1156
@ RTF_PNACROSS
Definition: rtftoken.h:1146
@ RTF_PICH
Definition: rtftoken.h:151
@ RTF_PNRDATE
Definition: rtftoken.h:603
@ RTF_BRDRFRAME
Definition: rtftoken.h:657
@ RTF_OPERATOR
Definition: rtftoken.h:99
@ RTF_MARGT
Definition: rtftoken.h:293
@ RTF_SPRSTSP
Definition: rtftoken.h:360
@ RTF_AUP
Definition: rtftoken.h:778
@ RTF_PNRRGB
Definition: rtftoken.h:598
@ RTF_NOXLATTOYEN
Definition: rtftoken.h:388
@ RTF_EDMINS
Definition: rtftoken.h:109
@ RTF_DPLINE
Definition: rtftoken.h:1047
@ RTF_WMETAFILE
Definition: rtftoken.h:162
@ RTF_FTNNDBNUMD
Definition: rtftoken.h:422
@ RTF_FLYOUTRIGHT
Definition: rtftoken.h:887
@ RTF_BRDRS
Definition: rtftoken.h:648
@ RTF_ASCAPS
Definition: rtftoken.h:770
@ RTF_BRDRTNTHMG
Definition: rtftoken.h:582
@ RTF_FORMPROT
Definition: rtftoken.h:334
@ RTF_ADN
Definition: rtftoken.h:763
@ RTF_DOBYPAGE
Definition: rtftoken.h:999
@ RTF_PICSCALEX
Definition: rtftoken.h:158
@ RTF_CLPADB
Definition: rtftoken.h:960
@ RTF_DROPCAPLI
Definition: rtftoken.h:850
@ RTF_TRPADDT
Definition: rtftoken.h:942
@ RTF_IXE
Definition: rtftoken.h:137
@ RTF_CHCBPAT
Definition: rtftoken.h:731
@ RTF_AFTNCN
Definition: rtftoken.h:308
@ RTF_PNI
Definition: rtftoken.h:1155
@ RTF_PHMRG
Definition: rtftoken.h:853
@ RTF_OBJH
Definition: rtftoken.h:1118
@ RTF_POSYIL
Definition: rtftoken.h:869
@ RTF_TRPADDFL
Definition: rtftoken.h:944
@ RTF_BRDRINSET
Definition: rtftoken.h:655
@ RTF_DPASTARTL
Definition: rtftoken.h:1011
@ RTF_DPASTARTSOL
Definition: rtftoken.h:1012
@ RTF_PNRNOT
Definition: rtftoken.h:569
@ RTF_PNRAUTH
Definition: rtftoken.h:593
@ RTF_FTTRUETYPE
Definition: rtftoken.h:226
@ RTF_FCHARSET
Definition: rtftoken.h:204
@ RTF_NOLINE
Definition: rtftoken.h:195
@ RTF_TX
Definition: rtftoken.h:621
@ RTF_LINERESTART
Definition: rtftoken.h:457
@ RTF_BRDRDASHDOTSTR
Definition: rtftoken.h:570
@ RTF_FROMTEXT
Definition: rtftoken.h:373
@ RTF_PNULW
Definition: rtftoken.h:1185
@ RTF_FNETWORK
Definition: rtftoken.h:220
@ RTF_DPFILLPAT
Definition: rtftoken.h:1045
@ RTF_FALT
Definition: rtftoken.h:205
@ RTF_UC
Definition: rtftoken.h:242
@ RTF_LEVELTEXT
Definition: rtftoken.h:1205
@ RTF_DPFILLFGGRAY
Definition: rtftoken.h:1043
@ RTF_DPCOBESTFIT
Definition: rtftoken.h:1017
@ RTF_FTNNRLC
Definition: rtftoken.h:341
@ RTF_PNUCLTR
Definition: rtftoken.h:1179
@ RTF_TCF
Definition: rtftoken.h:143
@ RTF_BGDKFDIAG
Definition: rtftoken.h:910
@ RTF_PNGBLIP
Definition: rtftoken.h:176
@ RTF_NOTABIND
Definition: rtftoken.h:352
@ RTF_ANSITYPE
Definition: rtftoken.h:62
@ RTF_SHPWRK
Definition: rtftoken.h:1090
@ RTF_CLBGDKBDIAG
Definition: rtftoken.h:985
@ RTF_TC
Definition: rtftoken.h:142
@ RTF_OBJCROPB
Definition: rtftoken.h:1111
@ RTF_REVAUTH
Definition: rtftoken.h:696
@ RTF_PGBRDRHEAD
Definition: rtftoken.h:391
@ RTF_NOFWORDS
Definition: rtftoken.h:111
@ RTF_FONTFILE
Definition: rtftoken.h:222
@ RTF_PGWSXN
Definition: rtftoken.h:460
@ RTF_AFTNNZODIACL
Definition: rtftoken.h:417
@ RTF_CLBGCROSS
Definition: rtftoken.h:980
@ RTF_CHDATEA
Definition: rtftoken.h:802
@ RTF_FOOTER
Definition: rtftoken.h:487
@ RTF_ULULDBWAVE
Definition: rtftoken.h:749
@ RTF_DO
Definition: rtftoken.h:994
@ RTF_HEADER_XL
Definition: rtftoken.h:526
@ RTF_DPFILLBGPAL
Definition: rtftoken.h:1039
@ RTF_DFRDATE
Definition: rtftoken.h:597
@ RTF_CELLX
Definition: rtftoken.h:928
@ RTF_OBJLINK
Definition: rtftoken.h:1120
@ RTF_CLCFPAT
Definition: rtftoken.h:973
@ RTF_RESULT
Definition: rtftoken.h:1133
@ RTF_FOOTERY
Definition: rtftoken.h:471
@ RTF_MACPICT
Definition: rtftoken.h:163
@ RTF_FLYVERT
Definition: rtftoken.h:884
@ RTF_FPRQ
Definition: rtftoken.h:206
@ RTF_LINEMOD
Definition: rtftoken.h:454
@ RTF_CHBGBDIAG
Definition: rtftoken.h:709
@ RTF_DOCCOMM
Definition: rtftoken.h:103
@ RTF_VERTALC
Definition: rtftoken.h:484
@ RTF_BGDKDCROSS
Definition: rtftoken.h:913
@ RTF_RTLDOC
Definition: rtftoken.h:358
@ RTF_FOOTER_YT
Definition: rtftoken.h:528
@ RTF_LISTSIMPLE
Definition: rtftoken.h:1210
@ RTF_PGNSTARTS
Definition: rtftoken.h:472
@ RTF_FTNNDBNUM
Definition: rtftoken.h:421
@ RTF_ULTH
Definition: rtftoken.h:718
@ RTF_CLBRDRB
Definition: rtftoken.h:970
@ RTF_ASHAD
Definition: rtftoken.h:771
@ RTF_FTNNDBAR
Definition: rtftoken.h:420
@ RTF_CLTXLRTBV
Definition: rtftoken.h:957
@ RTF_POSNEGY
Definition: rtftoken.h:867
@ RTF_OBJTIME
Definition: rtftoken.h:1129
@ RTF_UPR
Definition: rtftoken.h:240
@ RTF_MACTYPE
Definition: rtftoken.h:63
@ RTF_BUPTIM
Definition: rtftoken.h:108
@ RTF_LINEX
Definition: rtftoken.h:455
@ RTF_MIN
Definition: rtftoken.h:118
@ RTF_AFTNNDBNUMK
Definition: rtftoken.h:408
@ RTF_RTLMARK
Definition: rtftoken.h:234
@ RTF_COLSX
Definition: rtftoken.h:449
@ RTF_SECTDEFAULTCL
Definition: rtftoken.h:518
@ RTF_OBJAUTLINK
Definition: rtftoken.h:1109
@ RTF_NOFCHARS
Definition: rtftoken.h:112
@ RTF_OBJICEMB
Definition: rtftoken.h:1119
@ RTF_FRMTXBTLR
Definition: rtftoken.h:875
@ RTF_DOBXPAGE
Definition: rtftoken.h:997
@ RTF_DPLINEDADODO
Definition: rtftoken.h:1052
@ RTF_OLC
Definition: rtftoken.h:723
@ RTF_OLTHDASHD
Definition: rtftoken.h:754
@ RTF_BGBDIAG
Definition: rtftoken.h:905
@ RTF_FBIDI
Definition: rtftoken.h:216
@ RTF_NOSPACEFORUL
Definition: rtftoken.h:369
@ RTF_PNRXST
Definition: rtftoken.h:601
@ RTF_CLTXBTLR
Definition: rtftoken.h:956
@ RTF_RSLTRTF
Definition: rtftoken.h:1137
@ RTF_WRAPTRSP
Definition: rtftoken.h:363
@ RTF_OLTHDASHDD
Definition: rtftoken.h:755
@ RTF_FLDDIRTY
Definition: rtftoken.h:184
@ RTF_PICT
Definition: rtftoken.h:149
@ RTF_LEVELNUMBERS
Definition: rtftoken.h:1192
@ RTF_REVTIM
Definition: rtftoken.h:106
@ RTF_VERTALB
Definition: rtftoken.h:483
@ RTF_CHBGDKHORIZ
Definition: rtftoken.h:702
@ RTF_PGNDEC
Definition: rtftoken.h:477
@ RTF_ANNOTATION
Definition: rtftoken.h:130
@ RTF_OBJNAME
Definition: rtftoken.h:1122
@ RTF_FRMTXLRTB
Definition: rtftoken.h:873
@ RTF_HORZVERT
Definition: rtftoken.h:788
@ RTF_FVALIDHPFS
Definition: rtftoken.h:228
@ RTF_LISTNAME
Definition: rtftoken.h:1191
@ RTF_DPCODESCENT
Definition: rtftoken.h:1078
@ RTF_TEMPLATE
Definition: rtftoken.h:276
@ RTF_SHDW_DIST
Definition: rtftoken.h:1237
@ RTF_AFS
Definition: rtftoken.h:766
@ RTF_CLPADFT
Definition: rtftoken.h:963
@ RTF_PHPG
Definition: rtftoken.h:854
@ RTF_OBJALIAS
Definition: rtftoken.h:1107
@ RTF_PNLVLBODY
Definition: rtftoken.h:1161
@ RTF_SCAPS
Definition: rtftoken.h:674
@ RTF_NOSUPERSUB
Definition: rtftoken.h:666
@ RTF_QC
Definition: rtftoken.h:549
@ RTF_COLORTBL
Definition: rtftoken.h:90
@ RTF_ALLPROT
Definition: rtftoken.h:321
@ RTF_CRAUTH
Definition: rtftoken.h:729
@ RTF_OBJSCALEX
Definition: rtftoken.h:1124
@ RTF_AFTNNCNUM
Definition: rtftoken.h:404
@ RTF_MARGMIRROR
Definition: rtftoken.h:297
@ RTF_PNZODIACL
Definition: rtftoken.h:1226
@ RTF_CB
Definition: rtftoken.h:691
@ RTF_PROPNAME
Definition: rtftoken.h:123
@ RTF_DN
Definition: rtftoken.h:664
@ RTF_SHP
Definition: rtftoken.h:1250
@ RTF_PNDBNUMK
Definition: rtftoken.h:1216
@ RTF_LISTTEMPLATEID
Definition: rtftoken.h:1197
@ RTF_AFTNNGBNUMK
Definition: rtftoken.h:413
@ RTF_DOLOCK
Definition: rtftoken.h:1002
@ RTF_TRBRDRH
Definition: rtftoken.h:932
@ RTF_LYTEXCTTP
Definition: rtftoken.h:370
@ RTF_ADDITIVE
Definition: rtftoken.h:211
@ RTF_PICBPP
Definition: rtftoken.h:172
@ RTF_PNQC
Definition: rtftoken.h:1167
@ RTF_PNGBNUML
Definition: rtftoken.h:1223
@ RTF_FACENTER
Definition: rtftoken.h:609
@ RTF_OBJPUB
Definition: rtftoken.h:1123
@ RTF_WPSP
Definition: rtftoken.h:387
@ RTF_AFTNNGANADA
Definition: rtftoken.h:410
@ RTF_HR
Definition: rtftoken.h:117
@ RTF_OLTHLDASH
Definition: rtftoken.h:753
@ RTF_PNLCLTR
Definition: rtftoken.h:1157
@ RTF_FTNNZODIACD
Definition: rtftoken.h:431
@ RTF_DPPTY
Definition: rtftoken.h:1064
@ RTF_TQR
Definition: rtftoken.h:624
@ RTF_PAPERH
Definition: rtftoken.h:290
@ RTF_NOWIDCTLPAR
Definition: rtftoken.h:560
@ RTF_CTRLKEY
Definition: rtftoken.h:78
@ RTF_CHBGVERT
Definition: rtftoken.h:704
@ RTF_LFOLEVEL
Definition: rtftoken.h:1227
@ RTF_DPCOA
Definition: rtftoken.h:1015
@ RTF_BACKGROUND
Definition: rtftoken.h:1079
@ RTF_DFRSTOP
Definition: rtftoken.h:591
@ RTF_FORMDISP
Definition: rtftoken.h:333
@ RTF_ADEFLANG
Definition: rtftoken.h:434
@ RTF_TQL
Definition: rtftoken.h:623
@ RTF_STRIKE
Definition: rtftoken.h:676
@ RTF_SHPRSLT
Definition: rtftoken.h:1092
@ RTF_DPCOUNT
Definition: rtftoken.h:1032
@ RTF_PGNGBNUMK
Definition: rtftoken.h:513
@ RTF_BLIPTAG
Definition: rtftoken.h:179
@ RTF_AFTNNRLC
Definition: rtftoken.h:313
@ RTF_ACCCOMMA
Definition: rtftoken.h:786
@ RTF_HEX
Definition: rtftoken.h:830
@ RTF_TRQL
Definition: rtftoken.h:922
@ RTF_DPLINEDASH
Definition: rtftoken.h:1053
@ RTF_PNUCRM
Definition: rtftoken.h:1180
@ RTF_COLSR
Definition: rtftoken.h:451
@ RTF_DPCODABS
Definition: rtftoken.h:1019
@ RTF_CHBGCROSS
Definition: rtftoken.h:708
@ RTF_STATICVAL
Definition: rtftoken.h:127
@ RTF_PNQR
Definition: rtftoken.h:1169
@ RTF_SHPFHDR
Definition: rtftoken.h:1095
@ RTF_BRDRSH
Definition: rtftoken.h:650
@ RTF_PGBRDRR
Definition: rtftoken.h:377
@ RTF_AUL
Definition: rtftoken.h:773
@ RTF_HYPHEN
Definition: rtftoken.h:792
@ RTF_PNDBNUML
Definition: rtftoken.h:1217
@ RTF_FTNSTART
Definition: rtftoken.h:287
@ RTF_DPCODCENTER
Definition: rtftoken.h:1021
@ RTF_DPCODTOP
Definition: rtftoken.h:1022
@ RTF_FACINGP
Definition: rtftoken.h:295
@ RTF_WIDCTLPAR
Definition: rtftoken.h:565
@ RTF_TRBRDRR
Definition: rtftoken.h:934
@ RTF_DPROUNDR
Definition: rtftoken.h:1066
@ RTF_CLPADFL
Definition: rtftoken.h:962
@ RTF_CLPADT
Definition: rtftoken.h:959
@ RTF_AFTNNAUC
Definition: rtftoken.h:311
@ RTF_AF
Definition: rtftoken.h:765
@ RTF_HYPHLEAD
Definition: rtftoken.h:793
@ RTF_DPXSIZE
Definition: rtftoken.h:1074
@ RTF_PGBRDRL
Definition: rtftoken.h:384
@ RTF_BRDRB
Definition: rtftoken.h:639
@ RTF_TCL
Definition: rtftoken.h:144
@ RTF_BGCROSS
Definition: rtftoken.h:906
@ RTF_SOFTLHEIGHT
Definition: rtftoken.h:836
@ RTF_FLDALT
Definition: rtftoken.h:332
@ RTF_PNUL
Definition: rtftoken.h:1181
@ RTF_ENSPACE
Definition: rtftoken.h:832
@ RTF_FNKEY
Definition: rtftoken.h:75
@ RTF_LINEPAGE
Definition: rtftoken.h:458
@ RTF_DPFILLFGCR
Definition: rtftoken.h:1042
@ RTF_AFTNNDBAR
Definition: rtftoken.h:405
@ RTF_LDBLQUOTE
Definition: rtftoken.h:822
@ RTF_DPPOLYLINE
Definition: rtftoken.h:1062
@ RTF_FTNNRUC
Definition: rtftoken.h:342
@ RTF_OBJCROPL
Definition: rtftoken.h:1112
@ RTF_DPARC
Definition: rtftoken.h:1007
@ RTF_CLPADR
Definition: rtftoken.h:961
@ RTF_PNNUMONCE
Definition: rtftoken.h:1163
@ RTF_LEVELPREV
Definition: rtftoken.h:1208
@ RTF_AULDB
Definition: rtftoken.h:775
@ RTF_VERN
Definition: rtftoken.h:104
@ RTF_PVMRG
Definition: rtftoken.h:863
@ RTF_PNAIUEOD
Definition: rtftoken.h:1213
@ RTF_REVISED
Definition: rtftoken.h:196
@ RTF_HEADER_YH
Definition: rtftoken.h:531
@ RTF_EMDASH
Definition: rtftoken.h:817
@ RTF_DPAENDW
Definition: rtftoken.h:1006
@ RTF_SHPLID
Definition: rtftoken.h:1103
@ RTF_TITLE
Definition: rtftoken.h:96
@ RTF_FFHASLISTBOX
Definition: rtftoken.h:257
@ RTF_TLSWG
Definition: rtftoken.h:634
@ RTF_REVAUTHDEL
Definition: rtftoken.h:734
@ RTF_PNZODIAC
Definition: rtftoken.h:1224
@ RTF_FRACWIDTH
Definition: rtftoken.h:274
@ RTF_FLDINST
Definition: rtftoken.h:188
@ RTF_BRDRTHTNSG
Definition: rtftoken.h:583
@ RTF_DPLINECOR
Definition: rtftoken.h:1050
@ RTF_DPLINEPAL
Definition: rtftoken.h:1057
@ RTF_CHFTN
Definition: rtftoken.h:805
@ RTF_FFDEFRES
Definition: rtftoken.h:265
@ RTF_LTRSECT
Definition: rtftoken.h:496
@ RTF_PNULNONE
Definition: rtftoken.h:1184
@ RTF_PNRPNBR
Definition: rtftoken.h:599
@ RTF_DFRAUTH
Definition: rtftoken.h:596
@ RTF_ANNOTPROT
Definition: rtftoken.h:322
@ RTF_RTLCH
Definition: rtftoken.h:698
@ RTF_BRDRL
Definition: rtftoken.h:640
@ RTF_FTNNAR
Definition: rtftoken.h:338
@ RTF_FFOWNSTAT
Definition: rtftoken.h:255
@ RTF_FTNSEPC
Definition: rtftoken.h:281
@ RTF_PGHSXN
Definition: rtftoken.h:461
@ RTF_FILETBL
Definition: rtftoken.h:219
@ RTF_CLBGDKHOR
Definition: rtftoken.h:982
@ RTF_AFTNRESTART
Definition: rtftoken.h:315
@ RTF_FFHELPTEXT
Definition: rtftoken.h:252
@ RTF_DPTXBXTEXT
Definition: rtftoken.h:1072
@ RTF_VERSION
Definition: rtftoken.h:102
@ RTF_ULW
Definition: rtftoken.h:681
@ RTF_PGNLCRM
Definition: rtftoken.h:479
@ RTF_ABSNOOVRLP
Definition: rtftoken.h:852
@ RTF_CHBGDKVERT
Definition: rtftoken.h:701
@ RTF_PGNHNSN
Definition: rtftoken.h:501
@ RTF_AFTNNRUC
Definition: rtftoken.h:314
@ RTF_PICCROPR
Definition: rtftoken.h:169
@ RTF_SBKEVEN
Definition: rtftoken.h:446
@ RTF_TRBRDRT
Definition: rtftoken.h:935
@ RTF_ULTHDASHDD
Definition: rtftoken.h:747
@ RTF_WPEQN
Definition: rtftoken.h:193
@ RTF_FLDPRIV
Definition: rtftoken.h:187
@ RTF_SAUTOUPD
Definition: rtftoken.h:72
@ RTF_ENDDOC
Definition: rtftoken.h:284
@ RTF_LANG
Definition: rtftoken.h:692
@ RTF_TRUNCATEFONTHEIGHT
Definition: rtftoken.h:381
@ RTF_FAAUTO
Definition: rtftoken.h:606
@ RTF_AFTNSEP
Definition: rtftoken.h:317
@ RTF_BRDRT
Definition: rtftoken.h:638
@ RTF_XEF
Definition: rtftoken.h:237
@ RTF_RSLTBMP
Definition: rtftoken.h:1134
@ RTF_PNDBNUMD
Definition: rtftoken.h:1215
@ RTF_TRKEEP
Definition: rtftoken.h:938
@ RTF_BRDROUTSET
Definition: rtftoken.h:656
@ RTF_EXPSHRTN
Definition: rtftoken.h:374
@ RTF_COLNO
Definition: rtftoken.h:450
@ RTF_EXPNDTW
Definition: rtftoken.h:668
@ RTF_FFFORMAT
Definition: rtftoken.h:248
@ RTF_CLVMGF
Definition: rtftoken.h:953
@ RTF_SHPWR
Definition: rtftoken.h:1087
@ RTF_DPCOMINUSX
Definition: rtftoken.h:1024
@ RTF_RDBLQUOTE
Definition: rtftoken.h:823
@ RTF_ANIMTEXT
Definition: rtftoken.h:741
@ RTF_DPAENDHOL
Definition: rtftoken.h:1003
@ RTF_PNGBNUM
Definition: rtftoken.h:1220
@ RTF_OLOLDBWAVE
Definition: rtftoken.h:757
@ RTF_TRQC
Definition: rtftoken.h:924
@ RTF_AFTNNDBNUMT
Definition: rtftoken.h:409
@ RTF_BKMKCOLF
Definition: rtftoken.h:198
@ RTF_ATNREF
Definition: rtftoken.h:325
@ RTF_PNAIUEO
Definition: rtftoken.h:1212
@ RTF_BKMK_KEY
Definition: rtftoken.h:1235
@ RTF_DPFILLBGGRAY
Definition: rtftoken.h:1038
@ RTF_LEVELNFC
Definition: rtftoken.h:1194
@ RTF_PNSCAPS
Definition: rtftoken.h:1171
@ RTF_PICW
Definition: rtftoken.h:150
@ RTF_DPCALLOUT
Definition: rtftoken.h:1014
@ RTF_BLUE
Definition: rtftoken.h:93
@ RTF_BRDRTHTNLG
Definition: rtftoken.h:575
@ RTF_AFTNNDBNUMD
Definition: rtftoken.h:407
@ RTF_PRCOLBL
Definition: rtftoken.h:354
@ RTF_FLDTYPE
Definition: rtftoken.h:190
@ RTF_NOCOLBAL
Definition: rtftoken.h:350
@ RTF_DFRXST
Definition: rtftoken.h:592
@ RTF_TLUL
Definition: rtftoken.h:629
@ RTF_LEVELPREVSPACE
Definition: rtftoken.h:1207
@ RTF_SHIDDEN
Definition: rtftoken.h:71
@ RTF_SHDW_FCOL
Definition: rtftoken.h:1240
@ RTF_CLVERTALT
Definition: rtftoken.h:951
@ RTF_FRMTXTBRLV
Definition: rtftoken.h:877
@ RTF_PNSECLVL
Definition: rtftoken.h:1172
@ RTF_DPSHADY
Definition: rtftoken.h:1069
@ RTF_AFTNNZODIAC
Definition: rtftoken.h:415
@ RTF_PNORD
Definition: rtftoken.h:1164
@ RTF_GRF_ALIGNV
Definition: rtftoken.h:1231
@ RTF_ANSICPG
Definition: rtftoken.h:243
@ RTF_HYPHPAR
Definition: rtftoken.h:558
@ RTF_DPLINEDADO
Definition: rtftoken.h:1051
@ RTF_DPFILLFGCB
Definition: rtftoken.h:1040
@ RTF_LANGFE
Definition: rtftoken.h:783
@ RTF_LISTRESTARTHDN
Definition: rtftoken.h:1204
@ RTF_SECTSPECIFYCL
Definition: rtftoken.h:521
@ RTF_LINKSTYLES
Definition: rtftoken.h:348
@ RTF_FLYHORZ
Definition: rtftoken.h:885
@ RTF_RXE
Definition: rtftoken.h:138
@ RTF_TXE
Definition: rtftoken.h:139
@ RTF_SOFTPAGE
Definition: rtftoken.h:838
@ RTF_LYTPRTMET
Definition: rtftoken.h:371
@ RTF_POSYT
Definition: rtftoken.h:868
@ RTF_PICHGOAL
Definition: rtftoken.h:156
@ RTF_DPCOTSINGLE
Definition: rtftoken.h:1030
@ RTF_PGBRDROPT
Definition: rtftoken.h:394
@ RTF_DPLINECOG
Definition: rtftoken.h:1049
@ RTF_WBMBITSPIXEL
Definition: rtftoken.h:152
@ RTF_CHDATEL
Definition: rtftoken.h:801
@ RTF_HLFR
Definition: rtftoken.h:1093
@ RTF_POSX
Definition: rtftoken.h:856
@ RTF_PNORDT
Definition: rtftoken.h:1165
@ RTF_FLDEDIT
Definition: rtftoken.h:185
@ RTF_TRBRDRB
Definition: rtftoken.h:931
@ RTF_DOBYMARGIN
Definition: rtftoken.h:998
@ RTF_FLYANCHOR
Definition: rtftoken.h:890
@ RTF_BULLET
Definition: rtftoken.h:819
@ RTF_MANAGER
Definition: rtftoken.h:122
@ RTF_FSWISS
Definition: rtftoken.h:84
@ RTF_COLS
Definition: rtftoken.h:448
@ RTF_LINEBETCOL
Definition: rtftoken.h:453
@ RTF_DPCOACCENT
Definition: rtftoken.h:1016
@ RTF_SHPFBLWTXT
Definition: rtftoken.h:1099
@ RTF_BOX
Definition: rtftoken.h:644
@ RTF_FTNNCHI
Definition: rtftoken.h:340
@ RTF_PNCF
Definition: rtftoken.h:1150
@ RTF_PUBAUTO
Definition: rtftoken.h:232
@ RTF_SHADOW
Definition: rtftoken.h:1236
@ RTF_CRDATE
Definition: rtftoken.h:728
@ RTF_PNDEC
Definition: rtftoken.h:1151
@ RTF_TRPADDFR
Definition: rtftoken.h:945
@ RTF_OBJUPDATE
Definition: rtftoken.h:1131
@ RTF_VERTALJ
Definition: rtftoken.h:485
@ RTF_PVPARA
Definition: rtftoken.h:865
@ RTF_POSXC
Definition: rtftoken.h:858
@ RTF_LI
Definition: rtftoken.h:551
@ RTF_SECTSPECIFYL
Definition: rtftoken.h:522
@ RTF_WBMWIDTHBYTES
Definition: rtftoken.h:154
@ RTF_WIDOWCTRL
Definition: rtftoken.h:300
@ RTF_DFRSTART
Definition: rtftoken.h:594
@ RTF_BRDRTNTHTNSG
Definition: rtftoken.h:586
@ RTF_DNTBLNSBDB
Definition: rtftoken.h:372
@ RTF_CF
Definition: rtftoken.h:690
@ RTF_ULTHD
Definition: rtftoken.h:742
@ RTF_BGDKBDIAG
Definition: rtftoken.h:911
@ RTF_FTNRESTART
Definition: rtftoken.h:288
@ RTF_FTNALT
Definition: rtftoken.h:336
@ RTF_OVERLAY
Definition: rtftoken.h:580
@ RTF_QR
Definition: rtftoken.h:547
@ RTF_OLTHDASH
Definition: rtftoken.h:751
@ RTF_PGNGANADA
Definition: rtftoken.h:510
@ RTF_SN
Definition: rtftoken.h:1250
@ RTF_LIN
Definition: rtftoken.h:552
@ RTF_BRDRART
Definition: rtftoken.h:398
@ RTF_LISTID
Definition: rtftoken.h:1203
@ RTF_OBJW
Definition: rtftoken.h:1132
@ RTF_RED
Definition: rtftoken.h:91
@ RTF_BRDRDOT
Definition: rtftoken.h:652
@ RTF_OLHWAVE
Definition: rtftoken.h:756
@ RTF_VIEWSCALE
Definition: rtftoken.h:396
@ RTF_HEADERF
Definition: rtftoken.h:494
@ RTF_SUB
Definition: rtftoken.h:665
@ RTF_HYPHTRAIL
Definition: rtftoken.h:794
@ RTF_ATRFEND
Definition: rtftoken.h:327
@ RTF_PGNCONT
Definition: rtftoken.h:473
@ RTF_PCATYPE
Definition: rtftoken.h:65
@ RTF_OUTLINELEVEL
Definition: rtftoken.h:595
@ RTF_IGNOREFLAG
Definition: rtftoken.h:829
@ RTF_HLINKBASE
Definition: rtftoken.h:126
@ RTF_BKMKCOLL
Definition: rtftoken.h:199
@ RTF_PAGEBB
Definition: rtftoken.h:544
@ RTF_FTNNALC
Definition: rtftoken.h:337
@ RTF_DFRMTXTX
Definition: rtftoken.h:848
@ RTF_ATRFSTART
Definition: rtftoken.h:328
@ RTF_LS
Definition: rtftoken.h:613
@ RTF_SUPER
Definition: rtftoken.h:688
@ RTF_PNRNFC
Definition: rtftoken.h:604
@ RTF_PGNDBNUMT
Definition: rtftoken.h:509
@ RTF_DPCOTTRIPLE
Definition: rtftoken.h:1031
@ RTF_DPPOLYCOUNT
Definition: rtftoken.h:1060
@ RTF_PNRSTOP
Definition: rtftoken.h:602
@ RTF_SECTLINEGRID
Definition: rtftoken.h:520
@ RTF_FFTYPE
Definition: rtftoken.h:260
@ RTF_BRSP
Definition: rtftoken.h:645
@ RTF_DPFILLFGPAL
Definition: rtftoken.h:1044
@ RTF_FRELATIVE
Definition: rtftoken.h:224
@ RTF_REVDTTM
Definition: rtftoken.h:697
@ RTF_PGNGBNUML
Definition: rtftoken.h:514
@ RTF_PNGBNUMD
Definition: rtftoken.h:1221
@ RTF_YR
Definition: rtftoken.h:114
@ RTF_NEXTFILE
Definition: rtftoken.h:275
@ RTF_CBPAT
Definition: rtftoken.h:901
@ RTF_OBJDATA
Definition: rtftoken.h:1115
@ RTF_REVTBL
Definition: rtftoken.h:233
@ RTF_DATAFIELD
Definition: rtftoken.h:214
@ RTF_KERNING
Definition: rtftoken.h:669
@ RTF_BRDRDB
Definition: rtftoken.h:651
@ RTF_OBJATTPH
Definition: rtftoken.h:1141
@ RTF_KEEP
Definition: rtftoken.h:541
@ RTF_CHTIME
Definition: rtftoken.h:803
@ RTF_PGNHNSC
Definition: rtftoken.h:498
@ RTF_CLBGDKDCROSS
Definition: rtftoken.h:987
@ RTF_LINESTARTS
Definition: rtftoken.h:456
@ RTF_DOBYPARA
Definition: rtftoken.h:1000
@ RTF_OBJSUB
Definition: rtftoken.h:1128
@ RTF_OLDB
Definition: rtftoken.h:684
@ RTF_BRDRW
Definition: rtftoken.h:646
@ RTF_OLDASHDD
Definition: rtftoken.h:721
@ RTF_DPCOTDOUBLE
Definition: rtftoken.h:1028
@ RTF_LINE
Definition: rtftoken.h:815
@ RTF_RQUOTE
Definition: rtftoken.h:821
@ RTF_ENDASH
Definition: rtftoken.h:818
@ RTF_POSXO
Definition: rtftoken.h:860
@ RTF_PAR
Definition: rtftoken.h:811
@ RTF_HEADER_YB
Definition: rtftoken.h:525
@ RTF_LEVELJC
Definition: rtftoken.h:1201
@ RTF_DOCVAR
Definition: rtftoken.h:400
@ RTF_FLYPRINT
Definition: rtftoken.h:880
@ RTF_INFO
Definition: rtftoken.h:95
@ RTF_SHPZ
Definition: rtftoken.h:1100
@ RTF_CHATN
Definition: rtftoken.h:806
@ RTF_PGNHN
Definition: rtftoken.h:497
@ RTF_CS
Definition: rtftoken.h:694
@ RTF_POSNEGX
Definition: rtftoken.h:857
@ RTF_EXPND
Definition: rtftoken.h:667
@ RTF_FBIAS
Definition: rtftoken.h:209
@ RTF_PICSCALEY
Definition: rtftoken.h:159
@ RTF_CHBGDKCROSS
Definition: rtftoken.h:711
@ RTF_POSY
Definition: rtftoken.h:866
@ RTF_PNCAPS
Definition: rtftoken.h:1148
@ RTF_TRPADDFT
Definition: rtftoken.h:946
@ RTF_AFTNNCHI
Definition: rtftoken.h:312
@ RTF_ULC
Definition: rtftoken.h:717
@ RTF_SHPBYPARA
Definition: rtftoken.h:1081
@ RTF_LTRDOC
Definition: rtftoken.h:349
@ RTF_FET
Definition: rtftoken.h:331
@ RTF_CHBGHORIZ
Definition: rtftoken.h:705
@ RTF_FFSIZE
Definition: rtftoken.h:262
@ RTF_PGNHNSM
Definition: rtftoken.h:500
@ RTF_NOCWRAP
Definition: rtftoken.h:614
@ RTF_CLBRDRR
Definition: rtftoken.h:971
@ RTF_BALANCED_COLUMN
Definition: rtftoken.h:533
@ RTF_ZWNJ
Definition: rtftoken.h:840
@ RTF_DPASTARTW
Definition: rtftoken.h:1013
@ RTF_AULW
Definition: rtftoken.h:777
@ RTF_FFTYPETXT
Definition: rtftoken.h:261
@ RTF_PGNSTART
Definition: rtftoken.h:299
@ RTF_ACAPS
Definition: rtftoken.h:761
@ RTF_DPCOSMARTA
Definition: rtftoken.h:1027
@ RTF_BKMKPUB
Definition: rtftoken.h:212
@ RTF_PICPROP
Definition: rtftoken.h:173
@ RTF_BGDKVERT
Definition: rtftoken.h:909
@ RTF_DS
Definition: rtftoken.h:495
@ RTF_DPARCFLIPX
Definition: rtftoken.h:1008
@ RTF_BGDCROSS
Definition: rtftoken.h:907
@ RTF_CHBGDCROSS
Definition: rtftoken.h:707
@ RTF_FOOTNOTE
Definition: rtftoken.h:133
@ RTF_MARGLSXN
Definition: rtftoken.h:462
@ RTF_SHPPICT
Definition: rtftoken.h:174
@ RTF_IMPR
Definition: rtftoken.h:726
@ RTF_ULDB
Definition: rtftoken.h:679
@ RTF_TRPADDR
Definition: rtftoken.h:941
@ RTF_FTECH
Definition: rtftoken.h:88
@ RTF_CHBGFDIAG
Definition: rtftoken.h:700
@ RTF_FFHPS
Definition: rtftoken.h:258
@ RTF_FFOWNHELP
Definition: rtftoken.h:254
@ RTF_FTNNDBNUMK
Definition: rtftoken.h:423
@ RTF_DPPOLYGON
Definition: rtftoken.h:1061
@ RTF_LOCH
Definition: rtftoken.h:780
@ RTF_RSLTTXT
Definition: rtftoken.h:1138
@ RTF_DPCOTRIGHT
Definition: rtftoken.h:1029
@ RTF_CLSHDNG
Definition: rtftoken.h:975
@ RTF_FFEXITMCR
Definition: rtftoken.h:245
@ RTF_OBJSECT
Definition: rtftoken.h:1126
@ RTF_SHPGRP
Definition: rtftoken.h:1096
@ RTF_POSYOUT
Definition: rtftoken.h:571
@ RTF_NOFCHARSWS
Definition: rtftoken.h:125
@ RTF_NOWRAP
Definition: rtftoken.h:846
@ RTF_BGDKCROSS
Definition: rtftoken.h:912
@ RTF_PANOSE
Definition: rtftoken.h:207
@ RTF_FVALIDNTFS
Definition: rtftoken.h:230
@ RTF_OSMETAFILE
Definition: rtftoken.h:164
@ RTF_PGBRDRSNAP
Definition: rtftoken.h:378
@ RTF_BRDRDASHDD
Definition: rtftoken.h:573
@ RTF_FLY_CNTNT
Definition: rtftoken.h:891