Search
FlowChart.InplaceEditAllowed Property
See Also
 



Gets or sets a value indicating whether users can start editing box' text by double clicking the box.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_InplaceEditAllowed ()
void put_InplaceEditAllowed (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

Specifies whether text of diagram objects can be edited in-place by user. If enabled a text-entry field appears at the object's position when an object is double-clicked. In-place editing mode can be exited by clicking anywhere outside the text-field. When this happens one of the following events is raised, dependent on the edited object's type: BoxTextEdited, TableCaptionEdited, CellTextEdited.

 See Also