1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module excel
{
3 constants XlDataLabelPosition
{
4 const long xlLabelPositionAbove
= 0;
5 const long xlLabelPositionBelow
= 1;
6 const long xlLabelPositionBestFit
= 5;
7 const long xlLabelPositionCenter
= -4108;
8 const long xlLabelPositionCustom
= 7;
9 const long xlLabelPositionInsideBase
= 4;
10 const long xlLabelPositionInsideEnd
= 3;
11 const long xlLabelPositionLeft
= -4131;
12 const long xlLabelPositionMixed
= 6;
13 const long xlLabelPositionOutsideEnd
= 2;
14 const long xlLabelPositionRight
= -4152;
18 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */