Click or drag to resize

IClipboardHandler Interface

This interface is meant for controllers that want to handle clipboard events. WPF AddIns should handle the routed commands 'Copy', 'Cut', 'Paste', 'Delete' and 'SelectAll' instead.

Namespace: Altaxo.Gui
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface IClipboardHandler

The IClipboardHandler type exposes the following members.

Properties
 NameDescription
Public propertyEnableCopy Gets a value indicating whether copying is enabled.
Public propertyEnableCut Gets a value indicating whether cutting is enabled.
Public propertyEnableDelete Gets a value indicating whether deleting is enabled.
Public propertyEnablePaste Gets a value indicating whether pasting is enabled.
Public propertyEnableSelectAll Gets a value indicating whether selecting all is enabled.
Top
Methods
 NameDescription
Public methodCopy Copies the current selection.
Public methodCut Cuts the current selection.
Public methodDelete Deletes the current selection.
Public methodPaste Pastes clipboard content.
Public methodSelectAll Selects all items.
Top
See Also