Page 1 of 1

text objects

Posted: Apr 28 2006
by Guest
hi
how do i set the text to BOLD for text objects ?

thanks

Posted: Apr 28 2006
by Alex Kramer
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).

Posted: Apr 30 2006
by Guest
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).

  [SOLVED]

Posted: May 01 2006
by Alex Kramer
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