「Vlr-reactions」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成: ; 構文 : (vlr-reactions ''reactor'') ; 機能 : リアクタのペアのリスト(event-name . callback_function)を返す。 ; 引数 :* reactor : VLR オブジェクト。…)
 
編集の要約なし
 
(同じ利用者による、間の3版が非表示)
1行目: 1行目:
{{AutoLISP}}
; 構文
; 構文
: (vlr-reactions ''reactor'')
: (vlr-reactions ''reactor'')
5行目: 6行目:
; 機能
; 機能
: リアクタのペアのリスト(event-name . callback_function)を返す。
: リアクタのペアのリスト(event-name . callback_function)を返す。


; 引数
; 引数
:* reactor : VLR オブジェクト。
:* reactor : VLR オブジェクト。


; 戻り値
; 戻り値
14行目: 17行目:


; サンプル
; サンプル
(vlr-reactions circleReactor)
<pre class="brush:autolisp;">
'''((:vlr-modified . PRINT-RADIUS))'''
(vlr-reactions circleReactor)
((:vlr-modified . PRINT-RADIUS))
</pre>
 
-----
関連事項
* [[vlr-reaction-name]] 関数
* [[vlr-reaction-set]] 関数
* [[vlr-reactions]] 関数
* [[vlr-reactors]] 関数
* [[vlr-remove]] 関数
* [[vlr-remove-all]] 関数
* [[vl-load-com]] 関数
* [[リアクタ関数]]
 




[[Category:AutoLISP]]
[[Category:AutoLISP]]

2023年11月3日 (金) 11:34時点における最新版

構文
(vlr-reactions reactor)


機能
リアクタのペアのリスト(event-name . callback_function)を返す。


引数
  • reactor : VLR オブジェクト。


戻り値
リアクタのペアのリスト


サンプル
(vlr-reactions circleReactor)
((:vlr-modified . PRINT-RADIUS))

関連事項