add_editText(function(sender, e)) remove_editText(function(sender, e))
This event will occur when the object being edited is a text object and the user initiates edit mode. For more information, refer to AnnTextEditDesigner.EditText.
This example will show how to change the string used by an annotation text object when it enters edit mode.
Start with the AnnAutomationManager example, remove all the code inside the example function (search for the // TODO: add example code here comment) and insert the following code:
Click the example button then draw a text object and double click on it.
example: function SiteLibrary_DefaultPage$example() { var _this = this; // Hook to the automation's EditText event this._automation.add_editText(function(sender, e) { // In your application, you could show a dialog to enter the new text value or create // a text element on the page for editing // e is of type AnnEditTextEventArgs // Get the text annotation object var textObj = e.get_textObject(); // Change its text textObj.set_text("After edit"); // Invalidate it _this._automation.invalidate(Leadtools.LeadRectD.get_empty()); }); },
Parameter | Type | Description |
---|---|---|
sender | 'var' | The source of the event. |
e | AnnEditTextEventArgs | The event data. |