Answers for "send command civil3D"

0

send command civil3D

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 January-12-2022

Code answers related to "send command civil3D"

Python Answers by Framework

Browse Popular Code Answers by Language