You do not normally need to create an instance of this tool because one already exists as the ToolManager.textEditingTool, which you can modify.
The Tool.name of this tool is "TextEditing".
Optional
init: Partial<TextEditingTool>Gets or sets the HTMLInfo that is editing the text.
Gets or sets the default HTMLInfo that edits the text.
When TextEditingTool.doActivate is called, the currentTextEditor is set to this value by default. If a TextBlock.textEditor is specified on the TextBlock, that editor is used instead.
This tool will call HTMLInfo.show during doActivate, and HTMLInfo.hide during doDeactivate.
By default the value is an HTMLInfo, and the HTMLInfo.mainElement is an HTMLTextArea
.
You can see the default implementation details here.
For typical operation, HTMLInfo implementations should have a way of calling TextEditingTool.acceptText.
Gets or sets whether to select (highlight) the editable text when the TextEditingTool is activated. The default is true.
Gets or sets how user gestures can start in-place editing of text.
Possible values are TextEditingStarting values.
The default is TextEditingStarting.SingleClickSelected
Gets or sets the state of the TextEditingTool. The only accepted values are TextEditingState values.
The starting value value is TextEditingState.None, TextEditingTool.doActivate sets the value to TextEditingState.Active. The default text editor receiving focus sets the value to TextEditingState.Editing. TextEditingTool.acceptText sets the value to TextEditingState.Validating. Once accepted and the tool begins the "TextEditing" transaction, the value is set to TextEditingState.Validated.
Gets or sets the TextBlock that is being edited. This property is initially null and is set in TextEditingTool.doActivate as the TextBlock at the mouse click point. However, if you set this property beforehand, TextEditingTool.doActivate will not set it, and this tool will edit the given TextBlock.
Gets or sets the predicate that determines whether or not a string of text is valid. If this is non-null, this predicate is called in addition to any TextBlock.textValidation predicate. See isValidText for more details. The default predicate is null, which is equivalent to simply returning true.
The function, if supplied, must not have any side-effects.
Virtual
acceptFinish editing by trying to accept the new text.
Please read the Introduction page on Extensions for how to override methods and how to call this base method.
The reason must be a TextEditingAccept value.
Virtual
Override
canThis may run when there is a mouse-click on a TextBlock for which the TextBlock.editable property is true in a Part that Part.isSelected.
This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
Override
doStart editing the text for a textBlock.
If TextEditingTool.textBlock is not already specified, this looks for one at the current mouse point. If none is found, this method does nothing.
This method sets currentTextEditor.
If TextBlock.textEditor is defined on the TextBlock it will use that as the value.
By default, it uses the value of defaultTextEditor, which is an HTMLInfo
showing an HTML textarea, with the CSS class goTXarea
.
If the currentTextEditor is an HTMLInfo, this method calls HTMLInfo.show on that instance.
This sets Tool.isActive to true. Custom text editors should call TextEditingTool.acceptText to finish the edit by modifying the TextBlock and committing the edit transaction. Or call TextEditingTool.doCancel to abort the edit.
Override
doOverride
doRelease the mouse.
If the currentTextEditor is an HTMLInfo, this calls HTMLInfo.hide.
Virtual
doCall the textBlock's TextBlock.errorFunction, if there is one, and then show the text editor again. This is called only when the isValidText method returned false. The value of state will be StateInvalid. This method may be overridden. You may wish to override this method in order to not continue showing the editor.
Override
doThis calls acceptText with the reason TextEditingAccept.MouseDown, if this tool Tool.isActive.
Override
doA click (mouse up) calls TextEditingTool.doActivate if this tool is not already active and if TextEditingTool.canStart returns true.
Override
doThis calls TextEditingTool.doActivate if there is a textBlock set. doActivate attempts to set textBlock if it is null.
Virtual
doCall the textBlock's TextBlock.textEdited event handler, if there is one. This is called just after the TextBlock.text has been set to the new string value. When this method returns, this tool raises the "TextEdited" DiagramEvent and commits the transaction. This method may be overridden.
Virtual
isThis predicate checks any TextBlock.textValidation predicate and this tool's textValidation predicate to make sure the TextBlock.text property may be set to the new string.
This method may be overridden, although usually it is sufficient to set textValidation. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
true if the new string is valid for the given TextBlock.
This method returns a temporary TextBlock used for measuring text during editing. The TextBlock.text is set to the parameter's value, and the TextBlock is measured with the last available width of the textBlock.
Text editors can use the GraphObject.measuredBounds and TextBlock.lineCount to determine a reasonable size for their text areas.
the text to measure
Static
Readonly
DoubleStatic
Readonly
EnterStatic
Readonly
LostStatic
Readonly
MouseStatic
Readonly
SingleStatic
Readonly
SingleStatic
Readonly
StateStatic
Readonly
StateStatic
Readonly
StateStatic
Readonly
StateStatic
Readonly
StateStatic
Readonly
StateStatic
Readonly
Tab
The TextEditingTool is used to let the user interactively edit text in place. This sets the TextBlock.text property; you may want to save the changed text to the model by using a TwoWay Binding on the "text" property of editable TextBlocks.
Typically this is used by setting the TextBlock.editable property to true on a particular TextBlock in a part. When the part is selected and the user clicks on the TextBlock or invokes the CommandHandler.editTextBlock command, this tool is started and it uses an HTMLTextArea to perform in-place text editing. (For more details see the description for TextEditingTool.doActivate.)
The TextBlock is accessible as the TextEditingTool.textBlock property. The text editor is accessible as the TextEditingTool.currentTextEditor property. From the text editor control one can access the TextBlock being edited via the 'textEditingTool' property to get to this tool, from which one can use the TextEditingTool.textBlock property.
You can disable mouse clicking from starting this text editing tool by setting Tool.isEnabled to false. You can disable the F2 key from starting this text editing tool by making sure Part.canEdit returns false, by either setting Diagram.allowTextEdit to false or by setting Part.textEditable to false.
If you want to programmatically start the user editing a particular TextBlock, call CommandHandler.editTextBlock. That command method is also invoked by the F2 key on the keyboard.
For a general discussion of text editing validation, see: Introduction to Text Validation. For customizing the TextEditingTool, read about HTMLInfo and see Introduction to Text Editors.