75 lines
3.3 KiB
Text
75 lines
3.3 KiB
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
module ooo { module vba { module word {
|
|
constants WdCompatibility {
|
|
const long wdAlignTablesRowByRow = 39;
|
|
const long wdApplyBreakingRules = 46;
|
|
const long wdAutospaceLikeWW7 = 38;
|
|
const long wdConvMailMergeEsc = 6;
|
|
const long wdDontAdjustLineHeightInTable = 36;
|
|
const long wdDontBalanceSingleByteDoubleByteWidth = 16;
|
|
const long wdDontBreakWrappedTables = 43;
|
|
const long wdDontSnapTextToGridInTableWithObjects = 44;
|
|
const long wdDontULTrailSpace = 15;
|
|
const long wdDontUseAsianBreakRulesInGrid = 48;
|
|
const long wdDontUseHTMLParagraphAutoSpacing = 35;
|
|
const long wdDontWrapTextWithPunctuation = 47;
|
|
const long wdExactOnTop = 28;
|
|
const long wdExpandShiftReturn = 14;
|
|
const long wdFootnoteLayoutLikeWW8 = 34;
|
|
const long wdForgetLastTabAlignment = 37;
|
|
const long wdGrowAutofit = 50;
|
|
const long wdLayoutRawTableWidth = 40;
|
|
const long wdLayoutTableRowsApart = 41;
|
|
const long wdLeaveBackslashAlone = 13;
|
|
const long wdLineWrapLikeWord6 = 32;
|
|
const long wdMWSmallCaps = 22;
|
|
const long wdNoColumnBalance = 5;
|
|
const long wdNoExtraLineSpacing = 23;
|
|
const long wdNoLeading = 20;
|
|
const long wdNoSpaceForUL = 21;
|
|
const long wdNoSpaceRaiseLower = 2;
|
|
const long wdNoTabHangIndent = 1;
|
|
const long wdOrigWordTableRules = 9;
|
|
const long wdPrintBodyTextBeforeHeader = 19;
|
|
const long wdPrintColBlack = 3;
|
|
const long wdSelectFieldWithFirstOrLastCharacter = 45;
|
|
const long wdShapeLayoutLikeWW8 = 33;
|
|
const long wdShowBreaksInFrames = 11;
|
|
const long wdSpacingInWholePoints = 18;
|
|
const long wdSubFontBySize = 25;
|
|
const long wdSuppressBottomSpacing = 29;
|
|
const long wdSuppressSpBfAfterPgBrk = 7;
|
|
const long wdSuppressTopSpacing = 8;
|
|
const long wdSuppressTopSpacingMac5 = 17;
|
|
const long wdSwapBordersFacingPages = 12;
|
|
const long wdTransparentMetafiles = 10;
|
|
const long wdTruncateFontHeight = 24;
|
|
const long wdUsePrinterMetrics = 26;
|
|
const long wdUseWord2002TableStyleRules = 49;
|
|
const long wdUseWord97LineBreakingRules = 42;
|
|
const long wdWPJustification = 31;
|
|
const long wdWPSpaceWidth = 30;
|
|
const long wdWrapTrailSpaces = 4;
|
|
const long wdWW6BorderRules = 27;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|