「Vlax-get-or-create-object」の版間の差分
(ページの作成: ; 構文 : (vlax-get-or-create-object ''prog-id'') ; 機能 : アプリケーション オブジェクトの実行中のインスタンスを返す。アプリケーション…) |
細編集の要約なし |
||
13行目: | 13行目: | ||
; 戻り値 | ; 戻り値 | ||
: | : VLAオブジェクト。 | ||
; サンプル | ; サンプル | ||
<pre class="brush:autolisp;"> | |||
(vlax-get-or-create-object "Excel.Application") | |||
(vlax-get-or-create-bject "access.application" ) | |||
</pre> | |||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2013年3月17日 (日) 09:14時点における版
- 構文
- (vlax-get-or-create-object prog-id)
- 機能
- アプリケーション オブジェクトの実行中のインスタンスを返す。アプリケーションが実行中でない場合は、新しいインスタンスを作成する。
- 引数
-
- prog-id : ActiveX オブジェクトのプログラム上の識別子を含んだ文字列。prog-id の形式は、次のとおり。
<Vendor>.<Component>.<Version>
- 次に、例を示す。
AutoCAD.Drawing.15
- 戻り値
- VLAオブジェクト。
- サンプル
(vlax-get-or-create-object "Excel.Application") (vlax-get-or-create-bject "access.application" )