ReqTraceFactory Property
Description
The requirement link factory that manages the traceability links of the current requirement to its associated requirements in the specified direction.
Property type
Read-only property
Syntax
Visual Basic
Public Property ReqTraceFactory( _
   ByVal TraceDirection As Long _
) As Object
Parameters
TraceDirection
A value of the TDAPI_TRACE_DIRECTION Enumeration.
Example
IReq2 fatherReq;
int traceDirection = (int)tagTDAPI_TRACE_DIRECTION.TDOLE_TRACED_TO); // or just use: int traceDirection = 1
IReqTraceFactory reqTraceToFactory = (IReqTraceFactory)fatherReq.get_ReqTraceFactory(traceDirection);
See Also