public VarsRow AddVarsRow(string Name, string Value, long MaxValue, long MinValue, int VarSize)
            {
                VarsRow rowVarsRow = ((VarsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Name,
                    Value,
                    MaxValue,
                    MinValue,
                    VarSize
                };
                rowVarsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowVarsRow);
                return(rowVarsRow);
            }
            public VarsRow AddVarsRow(string Name, string DisplayValue, long MaxValue, long MinValue, int VarSize, int Address, string MemoryType, string DisplayAddress, byte[] Value)
            {
                VarsRow rowVarsRow = ((VarsRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Name,
                    DisplayValue,
                    MaxValue,
                    MinValue,
                    VarSize,
                    Address,
                    MemoryType,
                    DisplayAddress,
                    Value
                };
                rowVarsRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowVarsRow);
                return(rowVarsRow);
            }
 public VarsRowChangeEvent(VarsRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveVarsRow(VarsRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddVarsRow(VarsRow row)
 {
     this.Rows.Add(row);
 }