Skybound.Gecko.GeckoWebBrowser.CopyLinkLocation C# (CSharp) 메소드

CopyLinkLocation() 공개 메소드

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