/// <summary> /// Initializes a new instance of the <see cref="FeatureRowChangeEvent"/> class. /// </summary> /// <param name="row">The FeatureRow of the event.</param> /// <param name="action">The action occurring for this event.</param> public FeatureRowChangeEvent(FeatureRow row, DataRowAction action) { Row = row; Action = action; }
/// <summary> /// A new event argument for events in a FeatureTable. /// </summary> /// <param name="row">The FeatureRow of the event.</param> /// <param name="action">The action occuring for this event.</param> public FeatureRowChangeEvent(FeatureRow row, DataRowAction action) { _eventRow = row; _eventAction = action; }