BEurtle.BEurtlePlugin.ValidateParameters C# (CSharp) Method

ValidateParameters() public method

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