Jump to content

Viewport name (eg. for symbols)


Recommended Posts

Since objects in a viewport (annotation) are not on any layer, it seems that the only way to get them reported is to have a data record which is populated by a command.

PROCEDURE ViewPortName; { ? Petri Sakkinen 2009 } 

PROCEDURE GetIt (h : HANDLE);
VAR theViewport : HANDLE; vpName : STRING; 
BEGIN
theViewport := GETVPGROUPPARENT(GETPARENT(h));  
vpName := GETNAME(theViewport); 
MESSAGE(vpName); 
END;

BEGIN
FOREACHOBJECT(GetIt, (INVIEWPORT & (S='Your symbol'))); 
END; 

RUN(ViewPortName); 

Luckily my frustrated user I referred to elsewhere already has a record for revision data, so she only needed to add a field for the layer/viewport.

Instead of messaging, the real thing writes the vpName to this ?Location? field.

As a solution: satisfactory; as a need: nonsense! (Or whatever expression Nero Wolfe might use. Phooey?)

Edited by Kool Aid
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...