OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: andrew on January 18, 2010, 01:23:57 PM

Title: how do use a return in the caption text for a check box?
Post by: andrew on January 18, 2010, 01:23:57 PM
when using a check box, i want the text to be stacked

shown like
this

while maintaining a static height and width size
Title: Re: how do use a return in the caption text for a check box?
Post by: owenwengerd on January 19, 2010, 08:49:52 AM
I don't think it's possible to use a newline character in a check box.  You can achieve the same effect by using a separate label control for the check box label.
Title: Re: how do use a return in the caption text for a check box?
Post by: Fred Tomke on January 19, 2010, 02:00:57 PM
andrew,

in addition to that what Owen said I only want to note that there is an OnClicked event for the label control you can use to switch the checkbox state.

Fred
Title: Re: how do use a return in the caption text for a check box?
Post by: andrew on January 22, 2010, 11:11:50 AM
thanks Fred i will check that out