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

CopyLinkLocation() public method

Copies the location of the currently selected link to the clipboard.
public CopyLinkLocation ( ) : bool
return bool
        public bool CopyLinkLocation()
        {
            if (CanCopyLinkLocation)
            {
                ClipboardCommands.CopyLinkLocation();
                return true;
            }
            return false;
        }