XPTable.Models.Table.ResetMouseEventArgs C# (CSharp) Method

ResetMouseEventArgs() public method

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code
public ResetMouseEventArgs ( ) : void
return void
        public new void ResetMouseEventArgs()
        {
            if (this.trackMouseEvent == null)
            {
                this.trackMouseEvent = new TRACKMOUSEEVENT();
                this.trackMouseEvent.dwFlags = 3;
                this.trackMouseEvent.hwndTrack = base.Handle;
            }

            this.trackMouseEvent.dwHoverTime = this.HoverTime;

            NativeMethods.TrackMouseEvent(this.trackMouseEvent);
        }
Table