Community Tip - Learn all about PTC Community Badges. Engage with PTC and see how many you can earn! X
Hello folks,
is there any way to change the rtf textbox properties (the one from the "useful extra components" sheet) such as border and size?
Thanks in advance
Raiko
I thnk these are the available properties: http://msdn.microsoft.com/en-us/library/aa261597%28v=vs.60%29.aspx
Hi,
thanks for your help. Although the RTF textbox accepts the property (see below) it isn't executed. I.e. The border remains visible. Do I need to specifiy anything else?
Raiko
Sub RTFObjEvent_Exec(Inputs,Outputs)
RTFObj.BorderStyle=0
RTFObj.defTextRTF=Join(Inputs(0).Value)& Join(Inputs(1).Value)
End Sub
I don't see any other proprty that would make a difference. I don't know why te border still shows with BorderStyle set to 0. Sorry.