Skip to content

File GridValueChangedArgs.cs

File List > LemonUI > LemonUI > Menus > GridValueChangedArgs.cs

Go to the documentation of this file


using System.Drawing;

namespace LemonUI.Menus
{
    public class GridValueChangedArgs
    {
        #region Properties

        public PointF Before { get; }
        public PointF After { get; }

        #endregion

        #region Constructors

        internal GridValueChangedArgs(PointF before, PointF after)
        {
            Before = before;
            After = after;
        }

        #endregion
    }
}