RR
Ramya R
Syncfusion Team
April 4, 2007 12:29 PM UTC
Hi Apolon,
Thanks for your interest in Essential Diagram.
Yes, the filledpath.LineStyle in v5.1 can be used instead of the BorderStyle property in v4.4.
In v5.1 there is no ShowBorder property.So if your intention is to make the border invisible for a node then it can done by setting the Color of the BorderLine of the node to transparent as shown in the code snippet below,
filledpath.LineStyle.LineColor = Color.Transparent;
Let me know whether this helps you.
Thanks & Regards,
Ramya.
AI
Apolon Ivankovic
April 6, 2007 02:23 AM UTC
Ok, I'll use the transparent color approach. Because of the large number of Ess Diag API changes my app is currently in a state where lots of code commented out and maybe throws a NotImplementedException. This is just to get it into a state where it compiles successfully against the V5 Diag API. Once it compiles and some basic V5 diagram functionality is working, then the process will be to slowly add the functionality back in using whatever approach works in V5.
Bottom Line: I'll get back to you with how I go with the transparent color approach once the app is workable again.