Description

Returns an object representing a collection of child view relationships for the view.

Syntax

Public Function ChildViewRelationships() As ViewRelationships 

Example

Dim MyView As View
Dim MyChildViewRelationship As ViewRelationship

For Each MyChildViewRelationship In MyView.ChildViewRelationships

' Operations on child view relationships go here
...

Next MyChildViewRelationship

See Also