where is the (Item) member in C++.NET?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Rabbit
Newbie
Newbie
Posts: 9
Joined: Tue Mar 17, 2009 12:00 am

where is the (Item) member in C++.NET?

Post by Rabbit » Sat Aug 01, 2009 5:53 am

Hello,

I have this line in the VB.NET
Volume1.Item(index).Y = Volume1.Item(index).Y + 1

but what is the equivalent in C++.NET? because I could not find "ITEM" member in C++.NET?
Volume1->?

Regards,
Rabbit!

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: where is the (Item) member in C++.NET?

Post by Sandra » Mon Aug 03, 2009 10:18 am

Hello Rabbit,
but what is the equivalent in C++.NET? because I could not find "ITEM" member in C++.NET?
Volume1->?
Always, you could do same with item access directly to position that you want in series for exemple volume1[index]. Please check next lines of code if you do what you want in C++ .NET.

Code: Select all

	volume1[index]->Y  = volume1[index]->Y+1;
Hope will helps.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply