Search
Box.BeginInplaceEdit Method
See Also
 



Enters inplace-edit mode, allowing users to edit the text of this box.

 Syntax

VB6  Copy Code

Public Sub BeginInplaceEdit ()

C++  Copy Code

public:
void BeginInplaceEdit ()

 Remarks

Shows an edit control over a box, enabling the user to edit box' Text. If the AllowInplaceEdit property of a box is set to true, inplace editing can be also started interactively by double-clicking the box. The inplace editing operation can be ended programmatically by calling EndInplaceEdit, or interactively by clicking outside the edit control.

 See Also