2005-06-30 05:08 PM
2005-06-30 07:10 PM
!! a parameter fuertePen of type pen PEN fuertePen TEXT2 x, y, 'Read This'The size comes from the STYLE definition. Text size is in mm. Typically you'd have a real number parameter (let's say text_pt) for the point size, then convert it.
!! Points to mm text_size=text_pt/2.8346 DEFINE STYLE 'text_style' text_font, text_size, 5, 0 !center anchorYou can define as many styles as you want. Before placing text of that style you need
SET STYLE 'text_style'HTH. If you're talking RICHTEXT2 and PARAGRAPH, I would need to review my notes.
2005-06-30 07:31 PM
2005-06-30 08:09 PM
!! Points to mm text_size=text_pt/2.8346 DEFINE STYLE 'text_style' text_font, text_size, 5, 0 !center anchor SET STYLE 'text_style' PEN fuertePen TEXT2 x, y, 'Read This'