Interface IClipboardHandler
Defines an interface that can handle clipboard functionality.
Namespace: Gorgon.Editor.UI
Assembly: Gorgon.Editor.API.dll
Syntax
public interface IClipboardHandler : INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceClearCommand
Property to return the command used to clear the clipboard.
Declaration
IEditorCommand<object> ClearCommand { get; }
Property Value
Type | Description |
---|---|
IEditorCommand<object> |
CopyDataCommand
Property to return the command used to copy data into the clipboard.
Declaration
IEditorCommand<object> CopyDataCommand { get; }
Property Value
Type | Description |
---|---|
IEditorCommand<object> |
GetClipboardDataTypeCommand
Property to return the command that returns the type of data present on the clipboard (if any).
Declaration
IEditorCommand<GetClipboardDataTypeArgs> GetClipboardDataTypeCommand { get; }
Property Value
Type | Description |
---|---|
IEditorCommand<GetClipboardDataTypeArgs> |
HasData
Property to return whether the clipboard has data or not.
Declaration
bool HasData { get; }
Property Value
Type | Description |
---|---|
bool |
PasteDataCommand
Property to return the command used to paste data from the clipboard.
Declaration
IEditorAsyncCommand<object> PasteDataCommand { get; }
Property Value
Type | Description |
---|---|
IEditorAsyncCommand<object> |