「Vla-get-helpfilepath」の版間の差分
(ページの作成:「{{AutoLISP}} ; 構文 : (vla-get-helpfilepath ''vla-object'') ; 機能 : CAD のヘルプ ファイルの位置を指定する。 ; 引数 :* vla-object … Preferenc...」) |
細編集の要約なし |
||
5行目: | 5行目: | ||
; 機能 | ; 機能 | ||
: CAD のヘルプ | : CAD のヘルプ ファイルの位置を取得する。 | ||
2015年1月12日 (月) 11:42時点における最新版
- 構文
- (vla-get-helpfilepath vla-object)
- 機能
- CAD のヘルプ ファイルの位置を取得する。
- 引数
-
- vla-object … PreferencesFilesのVLAオブジェクト
- 戻り値
- ヘルプファイルのパス
- MEMO: このプロパティは CAD ヘルプ ファイルのドライブ、パス、およびファイル名を指定する。
- サンプル
(vl-load-com) (defun c:Example_HelpFilePath() ;; ヘルプファイルパスを取得・変更するサンプル (setq acadObj (vlax-get-acad-object)) (setq preferences (vla-get-Preferences acadObj)) ;; 現在のパス (setq currHelpFilePath (vla-get-HelpFilePath (vla-get-Files preferences))) (alert (strcat "現在の HelpFilePath は " currHelpFilePath)) ;; Change the value for HelpFilePath (setq newHelpFilePath "C:/CAD/Help") (vla-put-HelpFilePath (vla-get-Files preferences) newHelpFilePath) (alert (strcat "新しい HelpFilePath は " newHelpFilePath)) ;; Reset HelpFilePath to its original value (vla-put-HelpFilePath (vla-get-Files preferences) currHelpFilePath) (alert (strcat "HelpFilePath を元に戻す " currHelpFilePath)) )
関連事項