blob: cfb6ab665fdc80ec6c7f2a511af32e374dc6607e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlArrangeStyle {
const long xlArrangeStyleCascade = 7;
const long xlArrangeStyleHorizontal = -4128;
const long xlArrangeStyleTiled = 1;
const long xlArrangeStyleVertical = -4166;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|