public FontDataRow AddFontDataRow(int Index, int X, int Y, int Width, int Height)
            {
                FontDataRow rowFontDataRow = ((FontDataRow)(this.NewRow()));

                rowFontDataRow.ItemArray = new object[] {
                    Index,
                    X,
                    Y,
                    Width,
                    Height
                };
                this.Rows.Add(rowFontDataRow);
                return(rowFontDataRow);
            }
 public void RemoveFontDataRow(FontDataRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddFontDataRow(FontDataRow row)
 {
     this.Rows.Add(row);
 }
 public FontDataRowChangeEvent(FontDataRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public FontDataRowChangeEvent(FontDataRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveFontDataRow(FontDataRow row) {
     this.Rows.Remove(row);
 }
 public void AddFontDataRow(FontDataRow row) {
     this.Rows.Add(row);
 }