Clip.Properties

Introduced

v4.0

Description

Returns a PropertyCollection containing each Property object installed on the object. See Clip.AddProperty for a list of properties that can be nested underneath a Clip.

C# Syntax

// get accessor

PropertyCollection rtn = Clip.Properties;

Examples

VBScript Example

NewScene , false 

set oRoot = ActiveProject.ActiveScene.Root

set oGrid = oRoot.AddGeometry( "Grid", "MeshSurface" )

set oGeom = oGrid.ActivePrimitive.Geometry

set oClip = oGeom.SaveShapeKey(1)

set oPSet = oClip.AddProperty( "CustomProperty",false,"ClipData" )

oPSet.AddParameter3 "StringOnClip", siString

' You can also store binary data

oClip.AddProperty "UserDataBlob",false,"MyBlob"

' The new properties show up on the bottom

' of the PPG

InspectObj oClip

See Also

SceneItem.Properties Clip.AddProperty