Notifications
Clear all

[Closed] Layout of checkBox on rollOut

Can the checkbox be aligned on the right with the text for the checkbox to the left of the checkbox.

checkbox BVHOptionsDlg “BVH with Dialog” align:#Right – just aligns everything to the right with the checkbox on the left of the text. Not a big deal but I would like it there.

Thanks,

Chris

3 Replies

You can do it using a label and a checkbox where the label has the text of the checkbox.

Light

As light said, a label and checkbox together work well.


rollout rightCheck "right checkbox"
(
	label myLabel "check this:"  pos:[117,5]
	checkbox myCheck pos:[175,5]
)
createDialog rightCheck 200 25

Jon

Thanks Light and Jon. Appreciate the help. It worked perfectly.

Chris