Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
john_siggy@yahoo.com
Posted - May 28 2017 : 12:40:42 In ImageenVect how do you select a particular object from the object list?
Procedure would look like: ImageenVect.SelectObject(3) to select the 4th vectoral object.
Thanks in advance
1 L A T E S T R E P L I E S (Newest First)
w2m
Posted - May 28 2017 : 14:21:14
var
iHObj: Integer;
...
{ Get the object }
iHObj := ImageEnVect1.GetObjFromIndex(3);
{ Unselect all objects }
ImageEnVect1.UnSelAllObjects;
{ Select one object }
ImageEnVect1.AddSelObject(iHObj);
...