「Vle-extensions-active」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「{{AutoLISP}} ; 構文 : (vle-extensions-active) ; 機能 : この変数は、VLE機能拡張が存在しアクティブかどうかを示す。(らしいけど使え...」)
 
編集の要約なし
1行目: 1行目:
{{AutoLISP}}
{{AutoLISP}}
; 構文
; 構文
: (vle-extensions-active)
: 変数 vle-extensions-active




; 機能
; 機能
: この変数は、VLE機能拡張が存在しアクティブかどうかを示す。(らしいけど使えないっぽい?)
: この変数は、VLE機能拡張が存在しアクティブかどうかを示す。




18行目: 18行目:
;サンプル
;サンプル
<syntaxhighlight lang="lisp" line>
<syntaxhighlight lang="lisp" line>
(vle-extensions-active)
(if vle-extensions-active  
T :使える
  (princ "VLE使える \(^o^)/")
 
  (princ "VLE使えない (´・ω・`)")
)
</syntaxhighlight>
</syntaxhighlight>



2022年12月11日 (日) 05:54時点における版

構文
変数 vle-extensions-active


機能
この変数は、VLE機能拡張が存在しアクティブかどうかを示す。


引数
  • なし


戻り値
T = VLE拡張機能がアクティブ。 NIL = VLE機能拡張はアクティブではない。


サンプル

<syntaxhighlight lang="lisp" line> (if vle-extensions-active

 (princ "VLE使える \(^o^)/")
 (princ "VLE使えない (´・ω・`)")

) </syntaxhighlight>



関連事項