Traced Objects Attribute
The TracedObjectsAttribute displays traced objects of a specific type in a table. The table allows editing of traced objects, which means traces can be added or removed, and attributes can be edited.
Example
The following example defines a Traced Objects Attribute that displays traced objects of type Task.
XML
<TracedObjectsAttribute Name="Task Flow">
<TracedType TypeName="Task">
<DisplayedAttribute Name="Title" />
<DisplayedAttribute Name="System Response" />
<DisplayedAttribute Name="Use Environment" />
<DisplayedAttribute Name="Patient Involved" />
<DisplayedAttribute Name="Sterility Involved" />
</TracedType>
</TracedObjectsAttribute>
Appearance

XML Elements
TracedType
Specifies the traced type and its displayed attributes.
DisplayedAttribute
Specifies the attribute of the traced object to be displayed.
XML Attributes
CanCreate
Indicates if the user can create a new object directly from the table. The default value is false.
<TracedType TypeName="Task" CanCreate="false">
...
</TracedType>
TraceDirection
Specifies the trace direction. Must be "Outgoing" or "Incoming". The default value is outgoing.
<TracedType TypeName="Task" TraceDirection="Outgoing">
...
</TracedType>
Last updated
Was this helpful?