Vla-get-helpfilepath
- 構文
- (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)) )
関連事項