clipboard class
Description
Provides the function to operate the clipboard.
Notes
It is a class that is statically included in the Cooker.
An instance returned by variable declaration has been initialized.
Returns a singleton instance in response to an instance creation request. That is, variables of this class refer to the same instance.
fitter
Signature | Description |
clipboard() | Returns a new instance of clipboard class. |
getter
Signature | Description |
ContainsImage | Returns a value that indicates whether to exist an image data on the clipboard. |
ContainsText | Returns a value that indicates whether to exist a text data on the clipboard. |
Fitted | Returns a value that indicates whether an instance was initialized. |
TypeName | Returns a type name. |
setter
This class does not have a setter.
method
Signature | Description |
Clear() | Removes all data. |
GetImage() | Gets an image data from the clipboard. |
GetText() | Gets a text data from the clipboard. |
SetImage(bitmap) | Sets an image data. |
SetText(string) | Sets a text data. |