ComponentFactory.Krypton.Toolkit.ViewControlHitTestArgs.ViewControlHitTestArgs C# (CSharp) Method

ViewControlHitTestArgs() public method

Initialize a new instance of the ViewControlHitTestArgs class.
public ViewControlHitTestArgs ( Point pt ) : System
pt Point Point associated with hit test message.
return System
        public ViewControlHitTestArgs(Point pt)
            : base(true)
        {
            _pt = pt;
            _result = IntPtr.Zero;
        }
ViewControlHitTestArgs