Class TextEditingTool
The TextEditingTool is used to let the user interactively edit text in place. This sets the 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.
Namespace: Northwoods.Go.Tools
Assembly: Northwoods.GoDiagram.WinForms.dll
Syntax
public class TextEditingTool : Tool
Remarks
Typically this is used by setting the Editable property to true
on a particular Text
The Text
You can disable mouse clicking from starting this text editing tool
by setting Is
If you want to programmatically start the user editing a particular TextBlock,
call Edit
For a general discussion of text editing validation, see: Introduction to Text Validation.
For customizing the TextEditingTool, read about IHost
Constructors
TextEditingTool()
You do not normally need to create an instance of this tool
because one already exists as the Text
The Name of this tool is "TextEditing".
Declaration
public TextEditingTool()
Properties
CurrentTextEditor
Gets or sets the IHost
Declaration
public IHostInfo CurrentTextEditor { get; set; }
Property Value
Type | Description |
---|---|
IHost |
DefaultTextEditor
Gets or sets the default IHost
Declaration
public IHostInfo DefaultTextEditor { get; set; }
Property Value
Type | Description |
---|---|
IHost |
Remarks
When Do
This tool will call Show(Graph
By default the value is an IHost
For typical operation, IHostInfo implementations should have a way of calling Accept
SelectsTextOnActivate
Gets or sets whether to select (highlight) the editable text when the TextEditingTool is activated.
Declaration
public bool SelectsTextOnActivate { get; set; }
Property Value
Type | Description |
---|---|
bool |
Remarks
The default is true.
Starting
Gets or sets how user gestures can start in-place editing of text.
Declaration
public TextEditingStarting Starting { get; set; }
Property Value
Type | Description |
---|---|
Text |
Remarks
Possible values are Single
The default is Single
State
Gets or sets the state of the TextEditingTool.
Declaration
public TextEditingState State { get; set; }
Property Value
Type | Description |
---|---|
Text |
Remarks
The only accepted values are listed as constant properties of TextEditingTool, including:
The starting value value is None,
Do
TextBlock
Gets or sets the Text
Declaration
public TextBlock TextBlock { get; set; }
Property Value
Type | Description |
---|---|
Text |
Remarks
This property is initially null and is set in Do
TextValidation
Gets or sets the predicate that determines whether or not a string of text is valid.
Declaration
public Func<TextBlock, string, string, bool> TextValidation { get; set; }
Property Value
Remarks
If this is non-null, this predicate is called in addition to any Text
The function, if supplied, must not have any side-effects.
Methods
AcceptText(TextEditingAccept)
Finish editing by trying to accept the new text.
Declaration
public virtual void AcceptText(TextEditingAccept reason)
Parameters
Type | Name | Description |
---|---|---|
Text |
reason | The reason must be either Lost |
Remarks
Please read the Introduction page on Extensions for how to override methods and how to call this base method.
CanStart()
This may run when there is a mouse-click on a Text
Declaration
public override bool CanStart()
Returns
Type | Description |
---|---|
bool |
Overrides
Remarks
This method may be overridden. Please read the Introduction page on Extensions for how to override methods and how to call this base method.
DoActivate()
Start editing the text for a Text
Declaration
public override void DoActivate()
Overrides
Remarks
If Text
This method sets Current
If the Current
This sets Is
DoCancel()
Abort any text editing operation.
Declaration
public override void DoCancel()
Overrides
DoDeactivate()
Release the mouse.
If the Current
Declaration
public override void DoDeactivate()
Overrides
DoError(string, string)
Call the Text
Declaration
public virtual void DoError(string oldstring, string newstring)
Parameters
Remarks
This is called only when the Is
DoMouseDown()
This calls Accept
Declaration
public override void DoMouseDown()
Overrides
DoMouseUp()
A click (mouse up) calls Do
Declaration
public override void DoMouseUp()
Overrides
DoStart()
This calls Do
Declaration
public override void DoStart()
Overrides
DoSuccess(string, string)
Call the Text
Declaration
public virtual void DoSuccess(string oldstring, string newstring)
Parameters
Remarks
This is called just after the Text has been set to the new string value.
When this method returns, this tool raises the "TextEdited" Diagram
IsValidText(TextBlock, string, string)
This predicate checks any Text
Declaration
public virtual bool IsValidText(TextBlock textblock, string oldstr, string newstr)
Parameters
Type | Name | Description |
---|---|---|
Text |
textblock | the Text |
string | oldstr | the previous string value. |
string | newstr | the proposed new string value. |
Returns
Type | Description |
---|---|
bool | true if the new string is valid for the given TextBlock. |
Remarks
This method may be overridden, although usually it is sufficient to set Text
MeasureTemporaryTextBlock(string)
This method returns a temporary Text
Declaration
public TextBlock MeasureTemporaryTextBlock(string text)
Parameters
Type | Name | Description |
---|---|---|
string | text | the text to measure |
Returns
Type | Description |
---|---|
Text |
Remarks
The TextBlock.Text is set to the parameter's value,
and the TextBlock is measured with the last available width of the Text
Text editors can use the Measured