1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module excel
{
3 constants XlFormControl
{
4 const long xlButtonControl
= 0;
5 const long xlCheckBox
= 1;
6 const long xlDropDown
= 2;
7 const long xlEditBox
= 3;
8 const long xlGroupBox
= 4;
9 const long xlLabel
= 5;
10 const long xlListBox
= 6;
11 const long xlOptionButton
= 7;
12 const long xlScrollBar
= 8;
13 const long xlSpinner
= 9;
17 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */