blob: 61aaf6c3bde6f2908ced34bbc089911e38e4b846 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
module ooo { module vba { module office {
constants MsoButtonStyle {
const long msoButtonAutomatic = 0;
const long msoButtonCaption = 2;
const long msoButtonIcon = 1;
const long msoButtonIconAndCaption = 3;
const long msoButtonIconAndCaptionBelow = 11;
const long msoButtonIconAndWrapCaption = 7;
const long msoButtonIconAndWrapCaptionBelow = 15;
const long msoButtonWrapCaption = 14;
};
}; }; };
|