ChildCustomViews Property
The ChildCustomViews property returns a collection of CustomView objects.
Syntax
CustomView .ChildCustomViews
Applies To
Discussion
Use this property to create a custom view nested within a custom view. Use the Add method of the CustomViews collection to add a new a custom view. After adding the custom view to the collection, you can then update the properties of the new CustomView object.
A COM exception is thrown in error situations. The message that is passed with the exception varies depending on the error situation.
Type
CustomViews
Access
Read
Examples
currentCustomView = model.CustomViews.Add()childCustomView
= currentCustomView.ChildCustomViews.Add()