blob: b084d18bf96307382ada8e73c1bd5640e3e7304f (
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 AcView {
const long acViewDesign = 1;
const long acViewNormal = 0;
const long acViewPivotChart = 4;
const long acViewPivotTable = 3;
const long acViewPreview = 2;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|