blob: 6c07119a4bd3170099a4fbf94884f23bc461ab0b (
plain)
1
2
3
4
5
6
7
8
|
module ooo { module vba { module excel {
constants XlDirection {
const long xlDown = -4121;
const long xlToLeft = -4159;
const long xlToRight = -4161;
const long xlUp = -4162;
};
}; }; };
|