ClipContainer.Clips
 
 
 

ClipContainer.Clips

Description

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.

C# Syntax

// get accessor
ClipCollection rtn = ClipContainer.Clips;

Examples

1. JScript Example

/* MIXER CONFIGURATION
                Mixer
                    |
                    Track
                        |
                        Clip1
                        CompoundClip1
                           |
                           Track1
                                |
                                Clip2
                                Track2
                                     |
                                     Clip3
*/

2. Python Example

# 
#See the example for the ClipContainer object.
#