Skybound.Gecko.GeckoWebBrowser.CopyImageContents C# (CSharp) Method

CopyImageContents() public method

Copies the image contents of the selection to the clipboard as an image.
public CopyImageContents ( ) : bool
return bool
        public bool CopyImageContents()
        {
            if (CanCopyImageContents)
            {
                ClipboardCommands.CopyImageContents();
                return true;
            }
            return false;
        }