Search
Arrow.BeginInplaceEdit Method
See Also
 



Enters inplace-edit mode, allowing users to edit the text of this arrow.

 Syntax

VB6  Copy Code

Public Sub BeginInplaceEdit( _
    ByVal label As ArrowLabel _
)

C++  Copy Code

public:
void BeginInplaceEdit (
    ArrowLabel* label
)

 Parameters

label

An ArrowLabel instance.

 Remarks

Shows an edit control over this arrow or the specified label, enabling the user to edit their text. If the label argument is set to null, the edit control lets users enter a new value for the arrow's own Text property, or otherwise for the label's Text property.

If the AllowInplaceEdit property of an arrow is set to true, inplace editing can be also started interactively by double-clicking the arrow. The inplace editing operation can be ended programmatically by calling EndInplaceEdit, or interactively by clicking outside the edit control.

 See Also