1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module ooo
{ module vba
{ module word
{
21 constants WdMappedDataFields
{
22 const long wdAddress1
= 10;
23 const long wdAddress2
= 11;
24 const long wdAddress3
= 29;
25 const long wdBusinessFax
= 17;
26 const long wdBusinessPhone
= 16;
27 const long wdCity
= 12;
28 const long wdCompany
= 9;
29 const long wdCountryRegion
= 15;
30 const long wdCourtesyTitle
= 2;
31 const long wdDepartment
= 30;
32 const long wdEmailAddress
= 20;
33 const long wdFirstName
= 3;
34 const long wdHomeFax
= 19;
35 const long wdHomePhone
= 18;
36 const long wdJobTitle
= 8;
37 const long wdLastName
= 5;
38 const long wdMiddleName
= 4;
39 const long wdNickname
= 7;
40 const long wdPostalCode
= 14;
41 const long wdRubyFirstName
= 27;
42 const long wdRubyLastName
= 28;
43 const long wdSpouseCourtesyTitle
= 22;
44 const long wdSpouseFirstName
= 23;
45 const long wdSpouseLastName
= 25;
46 const long wdSpouseMiddleName
= 24;
47 const long wdSpouseNickname
= 26;
48 const long wdState
= 13;
49 const long wdSuffix
= 6;
50 const long wdUniqueIdentifier
= 1;
51 const long wdWebPageURL
= 21;
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */