Hi,
Is it possible to change the position of the text in the checkbox (right, left, top, bottom) ?
Or maybe there is a btnbar with a checkbox ?
Position of the text in the checkbox
- RAMESHBABU
- Posts: 626
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
Re: Position of the text in the checkbox
Hi,
The following may be useful to you.
* Horizontal Alignment Constant
BS_LEFT
BS_CENTER
BS_RIGHT
* Vertical Alignment Constant
BS_TOP
BS_VCENTER
BS_BOTTOM
* To Show Text Left side of Checkbox (Default Right)
BS_LEFTTEXT
oCb:nStyle := nOr(WS_CHILD, WS_VISIBLE, BS_AUTOCHECKBOX, WS_TABSTOP,....Either of Options of Your Choice)
-Ramesh Babu
The following may be useful to you.
* Horizontal Alignment Constant
BS_LEFT
BS_CENTER
BS_RIGHT
* Vertical Alignment Constant
BS_TOP
BS_VCENTER
BS_BOTTOM
* To Show Text Left side of Checkbox (Default Right)
BS_LEFTTEXT
oCb:nStyle := nOr(WS_CHILD, WS_VISIBLE, BS_AUTOCHECKBOX, WS_TABSTOP,....Either of Options of Your Choice)
-Ramesh Babu
Re: Position of the text in the checkbox
Thank you, it suits me !