Vla-put-activeprofile

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


機能
現在のプロファイル名を返す。


引数
  • vla-object … vla-get-profiles のVLAオブジェクト
  • profile … 現在のプロファイル名


戻り値
nil


サンプル
(defun putActiveProfile (profilename)
; プロファイルを作成・切り替え
  (vla-put-activeprofile
    (vla-get-profiles (vla-get-preferences (vlax-get-acad-object)))
    profilename
  )
)

関連事項