lihao2014 发表于 2019-6-27 14:55:53

CAD替换图片(网页版)

主要用到函数说明:
IMxDrawImageMark::ImageFile
图片文件路径。
js中实现代码说明:function ModifyImage() {
    // 新建一个COM组件对象
    var selEnt = mxOcx.NewComObject("IMxDrawUiPrEntity");
    selEnt.message = "选择图像对象";
    if(selEnt.go() != 1)
      return;
    var image = selEnt.Entity();
    if(image == null)
      return;
    if (image.ObjectName != "McDbMxImageMark") {
      alert("选择对象不是图像")
      return;
    }
    // 控件程序在磁盘的文件路径
    var sImageFile = mxOcx.GetOcxAppPath() + "\\mxdraw.png";
    //替换目标文件
    image.ImageFile = sImageFile;
}

页: [1]
查看完整版本: CAD替换图片(网页版)