Search
PathFindingOptions.AllowRepeatingVertices Property
See Also
 



Gets or sets a value indicating whether a graph vertex/node can be included more than once in a path.

 Syntax

VB6  Copy Code

Public Property Get AllowRepeatingVertices() As Boolean
Public Property Let AllowRepeatingVertices( _
    ByVal value As Boolean _
)

C++  Copy Code

public:
bool get_AllowRepeatingVertices ()
void put_AllowRepeatingVertices (
    bool value
)

 Property Value

true to allow including a node more than once in a path; otherwise, false. The default is true.

 Remarks

A node could be included in a path more than once if it can be reached from other nodes via different links.

 See Also