BEurtle.BEurtlePlugin.GetLinkText C# (CSharp) Method

GetLinkText() public method

public GetLinkText ( IntPtr hParentWnd, string parameters ) : string
hParentWnd System.IntPtr
parameters string
return string
        public string GetLinkText(IntPtr hParentWnd, string parameters)
        {
            var hwnd = hParentWnd != IntPtr.Zero ? new Win32Window(hParentWnd) : null;
            this.parameters = new ParseParameters(this, hwnd, parameters);
            return "Bugs, Bugs, Bugs!";
        }