Search
FlowChart.InplaceEditAcceptOnEnter Property
See Also
 



Gets or sets a value indicating whether pressing the ENTER key should exit inplace-edit mode and accept changes made to text.

 Syntax

VB6  Copy Code

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

C++  Copy Code

public:
bool get_InplaceEditAcceptOnEnter ()
void put_InplaceEditAcceptOnEnter (
    bool value
)

 Property Value

A boolean value. The default is false.

 Remarks

If the value of this property is false, pressing the ENTER key inserts a new line in the text while in inplace-edit mode.

 See Also