FindRouteChild method

The FindRouteChild method returns the interface to an object that is specified by using the path through the document hierarchy. You use this method to save or restore execution points during an action process.

The use of the path through a document hierarchy is shown in this example:
 B/D(20100028.002.01)/P(TM000001)/F(Vendor)

Syntax

C#
TDCOLib.DCO FindRouteChild(string bszRoute)

Arguments

bszRoute
The route through the document hierarchy. (See the C# example.)

Returns

Returns an interface to the specified object; returns null if the route is invalid.

C# example

This example gets an interface to the Vendor field object on page TM000001:
m_oDCOField = m_oDCO.FindRouteChild("B/D(20100028.002.01)/P(TM000001)/F(Vendor)");