Ushahidi.Common.Controls.KeyboardEventArgs.KeyboardEventArgs C# (CSharp) Method

KeyboardEventArgs() public method

public KeyboardEventArgs ( bool visible, int height, Control control ) : System
visible bool
height int
control System.Windows.Forms.Control
return System
        public KeyboardEventArgs(bool visible, int height, Control control)
        {
            Visible = visible;
            Height = height;
            Control = control;
        }
KeyboardEventArgs