diff options
Diffstat (limited to 'oovbaapi/ooo/vba/access/AcSection.idl')
-rw-r--r-- | oovbaapi/ooo/vba/access/AcSection.idl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/access/AcSection.idl b/oovbaapi/ooo/vba/access/AcSection.idl new file mode 100644 index 000000000..388e5735b --- /dev/null +++ b/oovbaapi/ooo/vba/access/AcSection.idl @@ -0,0 +1,16 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +module ooo { module vba { module access { + constants AcSection { + const long acDetail = 0; + const long acFooter = 2; + const long acGroupLevel1Footer = 6; + const long acGroupLevel1Header = 5; + const long acGroupLevel2Footer = 8; + const long acGroupLevel2Header = 7; + const long acHeader = 1; + const long acPageFooter = 4; + const long acPageHeader = 3; + }; +}; }; }; + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |