Search
Table.Obstacle Property
See Also
 



Gets or sets a value indicating whether this tale should be considered an obstacle by the arrow-routing algorithm.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_Obstacle ()
void put_Obstacle (
    bool value
)

 Property Value

A boolean value. The default is true.

 Remarks

Specifies whether a table is treated as an obstacle by the arrow-routing algorithm. If enabled, routed arrows try to find a path around this table; otherwise arrows ignore the table and go straight through it. It is useful to set the property to false for nodes used as decorative containers or labels.

 See Also