Search
Table.EndInplaceEdit Method
See Also
 



Exits inplace-edit mode, and either accepts or rejects any changes made to the text.

 Syntax

VB6  Copy Code

Public Sub EndInplaceEdit( _
    ByVal Accept As Boolean _
)

C++  Copy Code

public:
void EndInplaceEdit (
    bool Accept
)

 Parameters

Accept
Specifies whether changes made to the text should be accepted.

 Remarks

Hides the edit control shown previously by calling BeginInplaceEdit. That ends the inplace editing operation and validates the changes made to the text, as specified via the Accept argument.

 See Also