Click or drag to resize

DataColumnChangedEventArgs Class

Stores the accumulated change data of a column.
Inheritance Hierarchy
SystemObject
  SystemEventArgs
    Altaxo.MainSelfAccumulateableEventArgs
      Altaxo.DataDataColumnChangedEventArgs

Namespace: Altaxo.Data
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public class DataColumnChangedEventArgs : SelfAccumulateableEventArgs

The DataColumnChangedEventArgs type exposes the following members.

Constructors
 NameDescription
Public methodDataColumnChangedEventArgs Constructor.
Top
Properties
 NameDescription
Public propertyHasRowCountDecreasedIndicates, if the row count decreased during the data change event off period. In this case it is neccessary to recalculate the row count of the table, since it is possible that the table row count also decreased in this case.
Public propertyMaxRowChangedUpper bound (plus one) of the area of rows, which changed during the data change event off period. This in in the (plus one) convention, i.e. the value of this member is the maximum row number that changed plus one.
Public propertyMinRowChangedLower bound of the area of rows, which changed during the data change event off period.
Top
Methods
 NameDescription
Public methodAccumulate Accumulates further data changes of a column into a already created object.
Public methodAdd
(Overrides SelfAccumulateableEventArgsAdd(SelfAccumulateableEventArgs))
Public methodEquals Override to ensure that only one instance of SelfAccumulateableEventArgs is contained in the accumulated event args collection. You have to override Equals in the following way: two instances of the same type, which can be merged together, should return true (and GetHashCode should then return the same value).
(Inherited from SelfAccumulateableEventArgs)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCode Override to ensure that only one instance of SelfAccumulateableEventArgs is contained in the accumulated event args collection. You have to override GetHashCode in the following way: two instances of the same type, which can be merged together, should return the same hash code (and Equals should then return true).
(Inherited from SelfAccumulateableEventArgs)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Fields
 NameDescription
Protected field_hasRowCountDecreasedIndicates, if the row count decreased during the data change event off period. In this case it is neccessary to recalculate the row count of the table, since it is possible that the table row count also decreased in this case.
Protected field_maxRowChangedUpper bound (plus one) of the area of rows, which changed during the data change event off period. This in in the (plus one) convention, i.e. the value of this member is the maximum row number that changed plus one.
Protected field_minRowChangedLower bound of the area of rows, which changed during the data change event off period.
Top
See Also