Jump to content

Worksheets in Python


Recommended Posts

http://developer.vectorworks.net/index.php/VS:Function_Reference#Worksheets

http://developer.vectorworks.net/index.php/VS:CreateWSImage

def vs.CreateWSImage(worksheet, location):
    return HANDLE

from the Dev Wiki.

 

location is 2DPoint location on the drawing.

 

eg:

ws_name = "Worksheet-1" # this is an example, replace with name of your worksheet you want placed on your drawing

ws_def_handle = vs.GetObject(ws_name) # grab a handle to the worksheet definition in your resource manager
location = (0,0) # places center of drawing
ws_handle_on_dwg = vs.CreateWSImage(ws_handle, location)

 

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...