Item() call syntax

Post Reply
CDtech07
Posts: 6
Joined: Fri Jun 01, 2007 6:27 am

Item() call syntax

Post by CDtech07 »

In the latest release you have made changes to the Frame::Item() method so it works with vb6.

From the API...
Old - Item(Index as long,NPPointCloudPoint as INPPointCloudPoint)

New - Item(a_vlIndex as long) as INPPointCloudPoint

What would be the proper syntax for calling this method now?

"obj_Frame.Item int_Count, obj_Point" worked fine before
Birch
Posts: 1139
Joined: Thu Jan 30, 2003 5:00 am
Location: Corvallis, Oregon

Re: Item() call syntax

Post by Birch »

C# syntax changed from :
frame.Item(i, out point);

to :
point = frame.Item(i);


VB 6 uses this syntax :
Set obj_Point = obj_Frame.Item(PointIndex)
Post Reply