TrailVisitor<TData>
Class
This visitor keeps a trail of the visited item in the Trail.
Definition
Namespace:Telerik.Windows.Diagrams.Core
Assembly:Telerik.Windows.Diagrams.Core.dll
Type Parameters:
TData
The data type of the visitor.
Syntax:
C#
public sealed class TrailVisitor<TData> : IVisitor<TData>
Inheritance: objectTrailVisitor<TData>
Implements:
Constructors
Initializes a new instance of the TrailVisitor<TData> class.
C#
public TrailVisitor()
Properties
Gets a value indicating whether this visitor has completed.
C#
public bool HasCompleted { get; }
true if this instance has completed; otherwise, false.
Implements:
Methods
Visits the specified object.
C#
public void Visit(TData obj)
The object.
Implements: