using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace DevComponents.DotNetBar
{
    /// 
    /// Provides data for CheckStateConvert event.
    /// 
    public class CheckStateConvertEventArgs : EventArgs
    {
        public readonly object Value;
        public CheckState? CheckState = null;
        /// 
        /// Initializes a new instance of the CheckStateConvertEventArgs class.
        /// 
        /// 
        public CheckStateConvertEventArgs(object value)
        {
            Value = value;
        }
    }
}