*CTextBox: add option BOTTOM

BOTTOM was missed
This commit is contained in:
2012-09-24 16:35:38 +02:00
parent 33e684bc20
commit fee315f642
2 changed files with 9 additions and 4 deletions

View File

@@ -93,9 +93,10 @@ class CTextBox
AUTO_HIGH = 0x02, //auto adapt frame height to max height, text is painted with auto linebreak
SCROLL = 0x04, //frame box contains scrollbars on long text
CENTER = 0x40, //paint text centered
RIGHT = 0x100, //paint text right
TOP = 0x200, //paint text on top of frame
NO_AUTO_LINEBREAK = 0x80 //paint text without auto linebreak, cutting text
RIGHT = 0x80, //paint text right
TOP = 0x100, //paint text on top of frame
BOTTOM = 0x200, //paint text on bottom of frame
NO_AUTO_LINEBREAK = 0x400 //paint text without auto linebreak, cutting text
};
private: