Search
FlowChart.SnapDistance Property
See Also
 



Gets or sets the maximum distance between control points at which they can be automatically aligned.

 Syntax

VB6  Copy Code

Public Property Get SnapDistance() As Long
Public Property Let SnapDistance( _
    ByVal value As Long _
)

C++  Copy Code

public:
int get_SnapDistance ()
void put_SnapDistance (
    int value
)

 Property Value

A long value. The default is 20.

 Remarks

Specifies the maximum distance between control-points of diagram objects, at which snapping/alignment will be performed. Big value for this property makes objects snap one to another from larger distance. Do not make the value too big though, because in denser diagrams the object being modified would frequently "jump" between the objects that surround him.

 See Also