Package | Description |
---|---|
com.yworks.yfiles.view.input |
Contains definitions, default implementations, and support classes that deal with the user interaction in a
CanvasControl in general, as well as specialized utility classes and IInputMode implementations that can be used to work with and edit IGraph instances in a GraphControl . |
Modifier and Type | Method and Description |
---|---|
protected void |
TextEditorInputMode.onEditingCanceled(TextEventArgs args)
Raises the
EditingCanceled event. |
protected void |
TextEditorInputMode.onEditingStarted(TextEventArgs args)
Raises the
EditingStarted event. |
protected void |
TextEditorInputMode.onTextEdited(TextEventArgs args)
Raises the
TextEdited event. |
Modifier and Type | Method and Description |
---|---|
void |
TextEditorInputMode.addEditingCanceledListener(IEventHandler<TextEventArgs> editingCanceledEvent)
Adds the given listener for the
EditingCanceled event that occurs if the editing has not been finished. |
void |
TextEditorInputMode.addEditingStartedListener(IEventHandler<TextEventArgs> editingStartedEvent)
Adds the given listener for the
EditingStarted event that occurs when text editing is started. |
void |
TextEditorInputMode.addTextEditedListener(IEventHandler<TextEventArgs> textEditedEvent)
Adds the given listener for the
TextEdited event that occurs once the text has been edited. |
void |
TextEditorInputMode.removeEditingCanceledListener(IEventHandler<TextEventArgs> editingCanceledEvent)
Removes the given listener for the
EditingCanceled event that occurs if the editing has not been finished. |
void |
TextEditorInputMode.removeEditingStartedListener(IEventHandler<TextEventArgs> editingStartedEvent)
Removes the given listener for the
EditingStarted event that occurs when text editing is started. |
void |
TextEditorInputMode.removeTextEditedListener(IEventHandler<TextEventArgs> textEditedEvent)
Removes the given listener for the
TextEdited event that occurs once the text has been edited. |