「Vlr-reactions」の版間の差分
(ページの作成: ; 構文 : (vlr-reactions ''reactor'') ; 機能 : リアクタのペアのリスト(event-name . callback_function)を返す。 ; 引数 :* reactor : VLR オブジェクト。…) |
編集の要約なし |
||
1行目: | 1行目: | ||
{{AutoLISP} | |||
} | |||
; 構文 | ; 構文 | ||
: (vlr-reactions ''reactor'') | : (vlr-reactions ''reactor'') | ||
5行目: | 7行目: | ||
; 機能 | ; 機能 | ||
: リアクタのペアのリスト(event-name . callback_function)を返す。 | : リアクタのペアのリスト(event-name . callback_function)を返す。 | ||
; 引数 | ; 引数 | ||
:* reactor : VLR オブジェクト。 | :* reactor : VLR オブジェクト。 | ||
; 戻り値 | ; 戻り値 | ||
14行目: | 18行目: | ||
; サンプル | ; サンプル | ||
<pre class="brush:autolisp;"> | |||
(vlr-reactions circleReactor) | |||
((:vlr-modified . PRINT-RADIUS)) | |||
</pre> | |||
----- | |||
'''関連記事''' | |||
* [[vlr-reaction-name]] | |||
* [[vlr-reaction-set]] | |||
* [[vlr-reactions]] | |||
* [[vlr-reactors]] | |||
* [[vlr-remove]] | |||
* [[vlr-remove-all]] | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2020年12月23日 (水) 10:57時点における版
{{AutoLISP} }
- 構文
- (vlr-reactions reactor)
- 機能
- リアクタのペアのリスト(event-name . callback_function)を返す。
- 引数
-
- reactor : VLR オブジェクト。
- 戻り値
- リアクタのペアのリスト
- サンプル
(vlr-reactions circleReactor) ((:vlr-modified . PRINT-RADIUS))
関連記事