blob: f5416e5e6acb402054be175e8396140414d87606 (
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 XlCommandUnderlines {
const long xlCommandUnderlinesAutomatic = -4105;
const long xlCommandUnderlinesOff = -4146;
const long xlCommandUnderlinesOn = 1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|