空のCustomPropertyを作成し、SceneItem オブジェクトに追加します。このメソッドは、新しい CustomProperty オブジェクトを一から作成する場合にのみ適しています。すでにプリセットやPluginItemで定義されている CustomPropertyを作成する場合は、SceneItem.AddPropertyを使用します。
oReturn = SceneItem.AddCustomProperty( [Name], [BranchFlag] ); |
パラメータ | タイプ | 詳細 |
---|---|---|
Name | String | 新しいカスタムプロパティの名前を表します。 |
BranchFlag | Boolean | ブランチまたはオブジェクトのノードにプロパティを追加します。
デフォルト値: false |
'VBScript example set sceneItem = Application.ActiveProject.ActiveScene.Root.AddNull set prop = sceneItem.AddCustomProperty LogMessage "SceneItem's custom property name: " & prop.FullName |