「Vle-safearrayp」の版間の差分
編集の要約なし |
編集の要約なし |
||
19行目: | 19行目: | ||
;サンプル | ;サンプル | ||
< | <pre class="brush:autolisp;"> | ||
(vle-safearrayp 123) | (vle-safearrayp 123) | ||
nil | nil | ||
31行目: | 31行目: | ||
(vle-safearrayp "ENAME") | (vle-safearrayp "ENAME") | ||
nil | nil | ||
(setq point (vlax-make-safearray vlax-vbDouble '(0 . 3))) | (setq point (vlax-make-safearray vlax-vbDouble '(0 . 3))) | ||
37行目: | 36行目: | ||
T | T | ||
</ | </pre> | ||
----- | ----- |
2022年12月7日 (水) 08:10時点における版
- 構文
- (vle-safearrayp obj)
- 機能
- obj が セーフ配列型かどうかを調べる
- (= (type obj) 'SAFEARRAY)) と同様。
- 引数
-
- obj : 値
- 戻り値
- T= 'obj' はセーフ配列オブジェクト、nil = 'obj' は セーフ配列オブジェクトでない
- サンプル
(vle-safearrayp 123) nil (vle-safearrayp 123.0) T (vle-safearrayp T) nil (vle-safearrayp "ENAME") nil (setq point (vlax-make-safearray vlax-vbDouble '(0 . 3))) (vle-safearrayp point) T
関連事項