summaryrefslogtreecommitdiff
path: root/oovbaapi/ooo/vba/office/MsoTextEffectAlignment.idl
blob: 01daa2b631a88231982754bb9a8a09427e8d5145 (plain)
1
2
3
4
5
6
7
8
9
10
11
module ooo { module vba { module office {
    constants MsoTextEffectAlignment {
        const long msoTextEffectAlignmentCentered = 2;
        const long msoTextEffectAlignmentLeft = 1;
        const long msoTextEffectAlignmentLetterJustify = 4;
        const long msoTextEffectAlignmentMixed = -2;
        const long msoTextEffectAlignmentRight = 3;
        const long msoTextEffectAlignmentStretchJustify = 6;
        const long msoTextEffectAlignmentWordJustify = 5;
    };
}; }; };