Returns a ClipCollection
containing each Clip in this container. All
tracks are searched, but the search does not traverse into nested
clip containers.
For example, consider the mixer configuration presented under the
Examples section below. Calling the Clips property on the Mixer returns Clip1 and CompoundClip1. Calling the
Clips property on CompoundClip1 returns Clip2 and Clip3.
// get accessor ClipCollection rtn = ClipContainer.Clips; |
/* MIXER CONFIGURATION Mixer | Track | Clip1 CompoundClip1 | Track1 | Clip2 Track2 | Clip3 */ |
# #See the example for the ClipContainer object. # |