/// ------------------------------------------------------------------------------------
 /// <summary>
 /// Initializes a new instance of the <see cref="CheckGridStatusColumn"/> class.
 /// </summary>
 /// <param name="valuesAreIcons">true to indicate that the
 /// <see cref="P:System.Windows.Forms.DataGridViewCell.Value"/> property of cells in
 /// this column will be set to values of type <see cref="T:System.Drawing.Icon"/>;
 /// false to indicate that they will be set to values of type
 /// <see cref="T:System.Drawing.Image"/>.</param>
 /// ------------------------------------------------------------------------------------
 public CheckGridStatusColumn(bool valuesAreIcons) : base(valuesAreIcons)
 {
     CellTemplate = new CheckGridStatusCell();
 }
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Initializes a new instance of the <see cref="CheckGridStatusColumn"/> class.
		/// </summary>
		/// <param name="valuesAreIcons">true to indicate that the
		/// <see cref="P:System.Windows.Forms.DataGridViewCell.Value"/> property of cells in
		/// this column will be set to values of type <see cref="T:System.Drawing.Icon"/>;
		/// false to indicate that they will be set to values of type
		/// <see cref="T:System.Drawing.Image"/>.</param>
		/// ------------------------------------------------------------------------------------
		public CheckGridStatusColumn(bool valuesAreIcons) : base(valuesAreIcons)
		{
			CellTemplate = new CheckGridStatusCell();
		}
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Initializes a new instance of the <see cref="CheckGridStatusColumn"/> class.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 public CheckGridStatusColumn()
 {
     CellTemplate = new CheckGridStatusCell();
 }
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Initializes a new instance of the <see cref="CheckGridStatusColumn"/> class.
		/// </summary>
		/// ------------------------------------------------------------------------------------
		public CheckGridStatusColumn()
		{
			CellTemplate = new CheckGridStatusCell();
		}