Vla-put-plotorigin

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vla-put-plotorigin vla-object PlotOrigin)


機能
UCS、ブロック、印刷、またはラスター イメージの原点を WCS 座標で指定する。


引数
  • vla-object … VLAオブジェクト
  • PlotOrigin … XY座標値のバリアント型(2 要素の倍精度浮動小数点数型配列)
戻り値
バリアント値


サンプル
(setq *actlay* (vla-get-ActiveLayout (vla-get-activedocument (vlax-get-acad-object))))

(vla-put-configname *actlay* "A3-printer1.pc3")
(vla-put-stylesheet *actlay* "monocrome.ctb")
(vla-put-canonicalmedianame *actlay* "UserDefinedMetric (594.00 X 841.00ミリ)")
(vla-put-centerplot *actlay* :vlax-true)
(vla-put-paperunits *actlay* 1)
(vla-put-plothidden *actlay* :vlax-true)
(vla-put-plotrotation *actlay* 1)
(vla-put-plottype *actlay* 4)
(vla-put-plotorigin *actlay* (vlax-make-safearray vlax-vbdouble (cons 0 1)))
(vla-put-plotwithplotstyles *actlay* :vlax-true)
(vla-put-scalelineweights *actlay* :vlax-true)
(vla-put-usestandardscale *actlay* :vlax-true)


関連事項