Get an object from the find iterator
FUNCTION FindObjAtPt_GetObj(
finderID : LONGINT;
objIndex : INTEGER): HANDLE;def vs.FindObjAtPt_GetObj(finderID, objIndex):
return HANDLE| Name | Type | Description |
|---|---|---|
| finderID | LONGINT | |
| objIndex | INTEGER |
List is 0-indexed.
BEGIN
TempObjHand := FindObjAtPt_GetObj(FinderID,I);
{AlrtDialog(Concat(GetType(TempObjHand)));}
IF GetType(TempObjHand) = 71 THEN
BEGIN
FloorThick := GetObjectVariableReal(h,173);import vs
# Get an object from the find iterator.
finderID = 1
objIndex = 1
objHandle = vs.FindObjAtPt_GetObj(finderID, objIndex)
if objHandle is not None:
vs.Message('Created object handle: ' + str(objHandle))Availability: from Vectorworks 2014