Function Reference

IsObj

変数または式がオブジェクト型かどうか調べます。

IsObj ( variable )

 

パラメータ

variable 調べる変数/式

 

返し値

成功 オブジェクト型だった場合1を返します。
失敗 オブジェクト型でなかった場合0を返します。

 

注意


 

関連

ObjGet, ObjCreate, GUICtrlCreateObj, ObjEvent, ObjName, VarGetType

 


$oShell = ObjCreate("shell.application")
if not IsObj($oShell) then
    Msgbox(0,"Error","$oShell is not an Object.")
else
    Msgbox(0,"Error","Successfully created Object $oShell.")
endif