Search
Box.AllowInplaceEdit Property
See Also
 



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

 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

A boolean value.

 Remarks

Specifies whether the text of a box can be edited in-place by users. If enabled, a text-entry field appears when the box is double-clicked. In-place editing mode can be exited by clicking anywhere outside the text-field. When this happens, a BoxTextEdited event is raised.

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

 See Also