Vla-get-profiles

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vla-get-profiles vla-object)


機能
profiles オブジェクトを取得する。


引数
  • vla-object … Preferences の VLA オブジェクト


戻り値
profiles のVLAオブジェクト。
  • memo: PreferencesDrafting オブジェクトは、レジストリに保存されている オプションダイアログ ボックスのプロファイルタブの全てのオプションを保持している。
  • 図面と共に保存された全てのオプションは、DatabasePreferences オブジェクトから検索できる。


サンプル
(setq *prefs* (vla-get-preferences (vlax-get-Acad-Object)))
(setq *profiles* (vla-get-profiles *prefs*))

;ダンプ
(vlax-dump-object *profiles*)
; IAcadPreferencesProfiles: This object contains the options from the Profiles 
tab on the Options dialog
; プロパティの値:
;   ActiveProfile = "<<VANILLA>>"
;   Application (RO) = #<VLA-OBJECT IAcadApplication 00000001401e91d8>
T



関連事項