blob: 151ae7a4b4f39e98cab66859cff267f61c62c3af (
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 XlFormulaLabel {
const long xlColumnLabels = 2;
const long xlMixedLabels = 3;
const long xlNoLabels = -4142;
const long xlRowLabels = 1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|