Search
Table.AllowInplaceEdit Property
See Also
 



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

 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 table's caption or cells can be edited in-place by user. If enabled, a text-entry field appears over the cell or caption of the table on double-click. In-place editing mode can be exited by clicking anywhere outside the text-field. When this happens, the CellTextEdited or TableCaptionEdited events are raised.

 See Also