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 |
GraphEditorInputMode.onDeletedSelection(SelectionEventArgs<IModelItem> args)
Raises the
DeletedSelection event. |
protected void |
TableEditorInputMode.onDeletedSelection(SelectionEventArgs<IStripe> args)
Raises the
DeletedSelection event. |
protected void |
GraphEditorInputMode.onDeletingSelection(SelectionEventArgs<IModelItem> args)
Raises the
DeletingSelection event. |
protected void |
TableEditorInputMode.onDeletingSelection(SelectionEventArgs<IStripe> args)
Raises the
DeletingSelection event. |
Modifier and Type | Method and Description |
---|---|
void |
GraphEditorInputMode.addDeletedSelectionListener(IEventHandler<SelectionEventArgs<IModelItem>> deletedSelectionEvent)
Adds the given listener for the
DeletedSelection event that occurs just before the GraphEditorInputMode.deleteSelection()
method has deleted the selection after all selected items have been removed. |
void |
TableEditorInputMode.addDeletedSelectionListener(IEventHandler<SelectionEventArgs<IStripe>> deletedSelectionEvent)
Adds the given listener for the
DeletedSelection event that occurs just before the TableEditorInputMode.deleteSelection()
method has deleted the selection after all selected items have been removed. |
void |
GraphEditorInputMode.addDeletingSelectionListener(IEventHandler<SelectionEventArgs<IModelItem>> deletingSelectionEvent)
Adds the given listener for the
DeletingSelection event that occurs just before the GraphEditorInputMode.deleteSelection()
method starts its work and will be followed by any number of DeletedItem
events and finalized by a DeletedSelection event. |
void |
TableEditorInputMode.addDeletingSelectionListener(IEventHandler<SelectionEventArgs<IStripe>> deletingSelectionEvent)
Adds the given listener for the
DeletingSelection event that occurs just before the TableEditorInputMode.deleteSelection()
method starts its work and will be followed by any number of DeletedItem
events and finalized by a DeletedSelection event. |
void |
GraphEditorInputMode.removeDeletedSelectionListener(IEventHandler<SelectionEventArgs<IModelItem>> deletedSelectionEvent)
Removes the given listener for the
DeletedSelection event that occurs just before the GraphEditorInputMode.deleteSelection()
method has deleted the selection after all selected items have been removed. |
void |
TableEditorInputMode.removeDeletedSelectionListener(IEventHandler<SelectionEventArgs<IStripe>> deletedSelectionEvent)
Removes the given listener for the
DeletedSelection event that occurs just before the TableEditorInputMode.deleteSelection()
method has deleted the selection after all selected items have been removed. |
void |
GraphEditorInputMode.removeDeletingSelectionListener(IEventHandler<SelectionEventArgs<IModelItem>> deletingSelectionEvent)
Removes the given listener for the
DeletingSelection event that occurs just before the GraphEditorInputMode.deleteSelection()
method starts its work and will be followed by any number of DeletedItem
events and finalized by a DeletedSelection event. |
void |
TableEditorInputMode.removeDeletingSelectionListener(IEventHandler<SelectionEventArgs<IStripe>> deletingSelectionEvent)
Removes the given listener for the
DeletingSelection event that occurs just before the TableEditorInputMode.deleteSelection()
method starts its work and will be followed by any number of DeletedItem
events and finalized by a DeletedSelection event. |