clipboard class : ContainsImage getter
Description
Returns a value that indicates whether to exist an image data on the clipboard.
Syntax
instance.ContainsImage
Arguments
None.
Return value
Class | Description |
bool | Whether to exist an image data on the clipboard. |
Sample code
1: | clipboard clip; |
2: | bool exists = clip.ContainsImage; |
Notes
Returns true if it exists. Otherwise, returns false.
It is a wrapper of the System.Windows.Clipboard.ContainsImage().