ProjectItem.IsA

説明

オブジェクトとその親との間に、指定された種類のpset関係がある場合は True を戻し、ない場合は false を戻します。

スクリプト 構文

oBoolean = ProjectItem.IsA( Type );

戻り値

Boolean

パラメータ

パラメータ タイプ 詳細
タイプ siPSetRelationship 確認する PSet関係のタイプ

VBScript の例

set oObj = CreatePrim ("Sphere", "NurbsSurface")
if oObj.IsA(siSharedPSet) then
        Application.LogMessage "Sphere is shared"
else
        Application.LogMessage "Sphere is local"
end if