ProjectItem.IsA

説明

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

C#構文

Object ProjectItem.IsA( siPSetRelationship );

スクリプト構文

oBoolean = ProjectItem.IsA( Type );

戻り値

Boolean

パラメータ

パラメータ タイプ 説明
Type 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