blob: 3cf1d5c139645094bb0c199834fd034a54af1479 (
plain)
1
2
3
4
5
6
7
8
|
module ooo { module vba { module powerpoint {
constants PpTransitionSpeed {
const long ppTransitionSpeedFast = 3;
const long ppTransitionSpeedMedium = 2;
const long ppTransitionSpeedMixed = -2;
const long ppTransitionSpeedSlow = 1;
};
}; }; };
|