SceneItem.AddCustomProperty

説明

空のCustomPropertyを作成し、SceneItem オブジェクトに追加します。このメソッドは、新しい CustomProperty オブジェクトを一から作成する場合にのみ適しています。すでにプリセットやPluginItemで定義されている CustomPropertyを作成する場合は、SceneItem.AddPropertyを使用します。

スクリプト 構文

oReturn = SceneItem.AddCustomProperty( [Name], [BranchFlag] );

戻り値

CustomProperty

パラメータ

パラメータ タイプ 詳細
Name String 新しいカスタムプロパティの名前を表します。
BranchFlag Boolean ブランチまたはオブジェクトのノードにプロパティを追加します。

デフォルト値: false

VBScript の例

'VBScript example
set sceneItem = Application.ActiveProject.ActiveScene.Root.AddNull
set prop = sceneItem.AddCustomProperty
LogMessage "SceneItem's custom property name: " & prop.FullName