Answers for "send command dynamo civid"

0

send command dynamo civid

import System
from System import *

input = IN[0]

app = System.Runtime.InteropServices.Marshal.GetActiveObject("Autocad.Application")
adoc = app.ActiveDocument

adoc.SendCommand(input)							

OUT = str(input) + " sent to command line"
Posted by: Guest on August-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language