hi
how do i set the text to BOLD for text objects ?
thanks
text objects [SOLVED]
- Alex Kramer
- Posts: 834
- Joined: Feb 23 2006
BOLD is an extension that is implemented in PowerLanguage, it is not present in EasyLanguage. The usage is:
text_a_bold 1 True – text object is in bold type.
By default this attribute is false (text is normal).
text_a_bold 1 True – text object is in bold type.
By default this attribute is false (text is normal).
So what's the syntax in powerlanguage ?
BOLD is an extension that is implemented in PowerLanguage, it is not present in EasyLanguage. The usage is:
text_a_bold 1 True – text object is in bold type.
By default this attribute is false (text is normal).
- Alex Kramer
- Posts: 834
- Joined: Feb 23 2006
here's the syntax
value1=text_new(d,t,c,"MY TEXT");
text_setattribute(value1,1,true); // "my text" will be in bold type
hope this helps
value1=text_new(d,t,c,"MY TEXT");
text_setattribute(value1,1,true); // "my text" will be in bold type
hope this helps