「Vla-get-automaticplotlog」の版間の差分
(ページの作成:「{{AutoLISP}} ; 構文 : ( ''vla-object'') ; 機能 : ; 引数 :* vla-object … VLAオブジェクト ; 戻り値 : ; サンプル <pre class="brush:autolisp;...」) |
細編集の要約なし |
||
1行目: | 1行目: | ||
{{AutoLISP}} | {{AutoLISP}} | ||
; 構文 | ; 構文 | ||
: ( ''vla-object'') | : (vla-get-AutomaticPlotLog ''vla-object'' ''bool'') | ||
; 機能 | ; 機能 | ||
: | : オプション画面の出力のログを取る保存の設定。 | ||
; 引数 | ; 引数 | ||
:* vla-object … VLAオブジェクト | :* vla-object … VLAオブジェクト | ||
:* bool … :vlax-true or :vlax-false | |||
; 戻り値 | ; 戻り値 | ||
: | : :vlax-true or :vlax-false | ||
28行目: | 28行目: | ||
* [[vlax-get-acad-object]] | * [[vlax-get-acad-object]] | ||
* [[vla-get-activedocument]] | * [[vla-get-activedocument]] | ||
* [[vla-get-output]] | |||
* [[vla-get-preferences]] | * [[vla-get-preferences]] | ||
* [[vla-get-continuousplotlog]] | * [[vla-get-continuousplotlog]] | ||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2013年3月21日 (木) 16:10時点における版
- 構文
- (vla-get-AutomaticPlotLog vla-object bool)
- 機能
- オプション画面の出力のログを取る保存の設定。
- 引数
-
- vla-object … VLAオブジェクト
- bool … :vlax-true or :vlax-false
- 戻り値
- :vlax-true or :vlax-false
- サンプル
(setq OPref (vla-get-Output (vla-get-Preferences (vlax-get-acad-object)))) (setq sContinuousPlotLog (vla-get-ContinuousPlotLog OPref)) (setq sAutomaticPlotLog (vla-get-AutomaticPlotLog OPref))
関連事項