Hello,
In C#, this statement works fine.
(tChart1.Series[aa] as Steema.TeeChart.Styles.FastLine).LinePen.Width = int.Parse(textBox6.Text);
What is the equivalent statement for VB.Net?
Thanks
LinePen.Width
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: LinePen.Width
Hi tirby,
Try this:
You may also be interested in the on-line conversion tools here:
http://www.carlosag.net/tools/codetranslator/
http://converter.telerik.com/
http://www.developerfusion.com/tools/co ... arp-to-vb/
http://codeconverter.sharpdevelop.net/S ... erter.aspx
Try this:
Code: Select all
CType(tChart1.Series(aa),Steema.TeeChart.Styles.FastLine).LinePen.Width = Integer.Parse(textBox6.Text)
http://www.carlosag.net/tools/codetranslator/
http://converter.telerik.com/
http://www.developerfusion.com/tools/co ... arp-to-vb/
http://codeconverter.sharpdevelop.net/S ... erter.aspx
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |