/// <summary>
 /// Constructor for the KryptonDataGridViewDomainUpDownCell cell type
 /// </summary>
 public KryptonDataGridViewDomainUpDownCell()
 {
     // Create a thread specific KryptonNumericUpDown control used for the painting of the non-edited cells
     if (_paintingDomainUpDown == null)
     {
         _paintingDomainUpDown = new KryptonDomainUpDown();
         _paintingDomainUpDown.SetLayoutDisplayPadding(new Padding(0, 0, 0, -1));
         _paintingDomainUpDown.StateCommon.Border.Width = 0;
         _paintingDomainUpDown.StateCommon.Border.Draw  = InheritBool.False;
     }
 }