Пример #1
0
        ///// <summary>
        ///// Gets the collection of rows that belong to this table.
        ///// </summary>
        //public new DataRowCollection Rows
        //{
        //    get { throw (new NotSupportedException()); }
        //    set { throw (new NotSupportedException()); }
        //}

        /// <summary>
        /// Removes the row from the table
        /// </summary>
        /// <param name="row">Row to remove</param>
        public void RemoveRow(FeatureDataRow row)
        {
            Rows.Remove(row);
        }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the FeatureDataRowChangeEventArgs class.
 /// </summary>
 /// <param name="row"></param>
 /// <param name="action"></param>
 public FeatureDataRowChangeEventArgs(FeatureDataRow row, DataRowAction action)
 {
     eventRow    = row;
     eventAction = action;
 }
Пример #3
0
 /// <summary>
 /// Adds a row to the FeatureDataTable
 /// </summary>
 /// <param name="row"></param>
 public void AddRow(FeatureDataRow row)
 {
     Rows.Add(row);
 }