blob: d3b1cb7cad5c8e1c23a61b7959761c2723429d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
constants AcDefView {
const long acDefViewContinuous = 1;
const long acDefViewDatasheet = 2;
const long acDefViewPivotChart = 4;
const long acDefViewPivotTable = 3;
const long acDefViewSingle = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|