Search
Arrow.AllowMoveStart Property
See Also
 



Gets or sets a value indicating whether users are allowed to move the first control point of an arrow.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_AllowMoveStart ()
void put_AllowMoveStart (
    bool value
)

 Property Value

A boolean value. Initialized with FlowChart.ArrowEndsMovable.

 Remarks

Specifies if the user is allowed to move the first control point of an arrow. Set it to false to prevent the arrow's origin node to be changed interactively. Alternatively, you might handle the RequestAttachArrow event to implement selective validation of attaching an arrow to different diagram nodes.

 See Also