Position of the text in the checkbox

Post Reply
Natter
Posts: 1226
Joined: Mon May 14, 2007 9:49 am

Position of the text in the checkbox

Post by Natter »

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 ?
User avatar
RAMESHBABU
Posts: 626
Joined: Fri Oct 21, 2005 5:54 am
Location: Secunderabad (T.S), India

Re: Position of the text in the checkbox

Post by RAMESHBABU »

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
Natter
Posts: 1226
Joined: Mon May 14, 2007 9:49 am

Re: Position of the text in the checkbox

Post by Natter »

Thank you, it suits me !
Post Reply