blob: f1ec14dfa100c05f50bbf9905d60c74cb9b0082b (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlBackground {
const long xlBackgroundAutomatic = -4105;
const long xlBackgroundOpaque = 3;
const long xlBackgroundTransparent = 2;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|