AuScGen.HtmlButtonExtension.TypeEnterKey C# (CSharp) Method

TypeEnterKey() public static method

public static TypeEnterKey ( this control ) : void
control this
return void
        public static void TypeEnterKey(this HtmlButton control)
        {
            control.Focus();
            control.OwnerBrowser.Manager.Desktop.KeyBoard.KeyPress(Keys.Enter);
        }
    }