This event is generated when text is being entered in the Text annotation object and the textbox used to enter that text is clicked.
[Visual Basic] Public Event TextObjectBoxClick
As System.EventHandler
[C#] public event System.EventHandler
TextObjectBoxClick;
Event Data
The event handler receives arguments of type System.EventArgs
Explanation
The TextObjectBoxClick event is generated when text is being entered in the Text annotation object and the textbox used to enter that text is clicked.
If there is code that you want to execute when the textbox is clicked, write that code in this event. For tablet PCs, it is common to write code that displays the soft keyboard when this textbox is clicked.