Vla-put-plottype
- 構文
- (vla-put-plottype vla-object acPlotType )
- 機能
- レイアウトまたは印刷環境設定のタイプを設定する。
- 引数
-
- vla-object … VLAオブジェクト
- acPlotType … 定数
- acDisplay : 現在の画面内にあるすべてのオブジェクトを印刷する。
- acExtents : 現在選択されている空間の表示範囲に含まれるすべてのオブジェクトを印刷する。
- acLimits : 現在の空間の図面範囲内にあるすべてのオブジェクトを印刷する。
- acView : ViewToPlot プロパティで名前を付けたビューを印刷する。
- acWindow :SetWindowToPlot メソッドで指定されたウィンドウ内にあるすべてのオブジェクトを印刷する。
- acLayout : [レイアウト]タブで座標位置 0.0 から計算される原点を持つペーパー サイズで指定された余白に含まれる、すべてのオブジェクトを印刷する。このオプションはモデル空間に対しては使用できない。
- 戻り値
- nil
- サンプル
(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* acLimits) (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)
関連事項
- vlax-get-acad-object
- vla-get-activedocument
- vla-get-activelayout
- vla-get-configname
- vla-get-stylesheet
- vla-get-canonicalmedianame
- vla-get-centerplot
- vla-get-paperunits
- vla-get-plothidden
- vla-get-plotrotation
- vla-get-plottype
- vla-get-plotorigin
- vla-get-plotwithplotstyles
- vla-get-scalelineweights
- vla-get-usestandardscale
- vla-get-windowstate
- vla-put-configname
- vla-put-stylesheet
- vla-put-canonicalmedianame
- vla-put-centerplot
- vla-put-paperunits
- vla-put-plothidden
- vla-put-plotrotation
- vla-put-plottype
- vla-put-plotorigin
- vla-put-plotwithplotstyles
- vla-put-scalelineweights
- vla-put-usestandardscale
- vla-put-windowstate