import_local_dxf_string_base64#

导入本地dxf文件#

图块代码

../../_images/import_local_dxf_string_base64.png

javascript

var s = ""
jih_doc.geom_dxf_string(s, 1, color, axis_dir, true)

python

s = ""
jih_doc.geom_dxf_string(s, 1, color, axis_dir, True)

npl

local s = ""
jih_doc:geom_dxf_string(s, 1, color, axis_dir, true)

参数#

参数

类型

默认值

说明

color

string

“#ffc658”

axis_dir

string

“‘z’”

示例#

var s = ""
jih_doc.geom_dxf_string(s, 1, "#ffc658", 'z', true)
s = ""
jih_doc.geom_dxf_string(s, 1, "#ffc658", 'z', True)
local s = ""
jih_doc:geom_dxf_string(s, 1, "#ffc658", 'z', true)