Vla-getallprofilenames

提供:GizmoLabs - だいたい CAD LISP なサイト
2016年1月23日 (土) 20:34時点におけるGizmon (トーク | 投稿記録)による版 (ページの作成:「{{AutoLISP}} ; 構文 : (vla-getallprofilenames ''vla-object'' ''pNames'') ; 機能 : システムで使用可能なすべてのプロファイルを取得する。 ;...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
構文
(vla-getallprofilenames vla-object pNames)


機能
システムで使用可能なすべてのプロファイルを取得する。


引数
  • vla-object … PreferencesProfiles の VLAオブジェクト
  • pNames … システムで使用可能なプロファイル名のリスト。


戻り値
nil
サンプル
(vl-load-com)
(defun c:Example_GetAllProfileNames()
    ;; すべてのプロファイルを取得するサンプル
    (setq acadObj (vlax-get-acad-object))
    (setq preferences (vla-get-Preferences acadObj))
  
    ;; PreferencesProfiles オブジェクトを使用
    (setq systemProfiles "")
    (vla-GetAllProfileNames (vla-get-Profiles preferences) 'systemProfiles)
       
    ;; プロファイルをリスト表示
    (setq x 0
          msg "")
    (while (>= (vlax-safearray-get-u-bound systemProfiles 1) x)
        (setq msg (strcat msg (vlax-safearray-get-element systemProfiles x) "\n"))
        (setq x (1+ x))
    )
    (alert msg)
)

関連事項