Search
Arrow.AllowInplaceEdit Property
See Also
 



Gets or sets a value indicating whether users are allowed to edit the text of this arrow.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_AllowInplaceEdit ()
void put_AllowInplaceEdit (
    bool value
)

 Property Value

true to let users edit arrow's text, or false otherwise.

 Remarks

Specifies whether the text of an arrow can be edited in-place by users. If enabled, a text entry field appears when the arrow is double-clicked. In-place editing mode can be exited by clicking anywhere outside the text-field. When this happens, the control raises either the ArrowTextEdited or ArrowLabelEdited event depending on what has been edited.

Inplace editing can be started programmatically by calling the BeginInplaceEdit method, or ended via EndInplaceEdit.

 See Also