CPF/CPF.ReoGrid/Main/SheetTabMouseEventArgs.cs

18 lines
313 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
using CPF.ReoGrid.Interaction;
namespace CPF.ReoGrid.Main
{
public class SheetTabMouseEventArgs : EventArgs
{
public MouseButtons MouseButtons { get; set; }
public Point Location { get; set; }
public int Index { get; set; }
public bool Handled { get; set; }
}
}