「Endtransaction」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成:「; 構文 : (endtransaction) ; 機能 : (starttransaction) で開始したトランザクションの処理を終了する。 ; 引数 :* なし ; 戻り値 : T ...」)
 
編集の要約なし
 
1行目: 1行目:
{{AutoLISP}}
; 構文
; 構文
: (endtransaction)
: (endtransaction)
5行目: 7行目:
; 機能
; 機能
: (starttransaction) で開始したトランザクションの処理を終了する。
: (starttransaction) で開始したトランザクションの処理を終了する。
* IntelliCAD 7.2 より実装された IntelliCAD独自関数


; 引数
; 引数
:* なし
:* なし


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




* IntelliCAD 7.2 より実装


; サンプル
; サンプル
26行目: 29行目:
関連事項
関連事項
* [[starttransaction]] 関数
* [[starttransaction]] 関数
*
 


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

2021年2月23日 (火) 06:52時点における最新版

構文
(endtransaction)


機能
(starttransaction) で開始したトランザクションの処理を終了する。
  • IntelliCAD 7.2 より実装された IntelliCAD独自関数
引数
  • なし


戻り値
T


サンプル
(starttransaction)
; 何かの描画処理

(endtransaction)

関連事項