Base |
public abstract class BaseColumnCollectionChangedEventArgs : SelfAccumulateableEventArgs
The BaseColumnCollectionChangedEventArgs type exposes the following members.
Name | Description | |
---|---|---|
BaseColumnCollectionChangedEventArgs | Constructor. |
Name | Description | |
---|---|---|
ColumnAdditionDeletionRenameOperations | Gets the column addition, deletion, and rename operations. For additions, the OldName field in the tuple is null, and the NewName field contains the name of the added column. For deletions, the NewName field of the tuple is null, and the OldName field contains the name of the deleted column. For renamings, the OldName filed of the tuple contains the old name of the column, and the NewName field contains the new name. | |
HasRowCountDecreased | Returns whether the row count may have decreased. | |
MaxColChanged | Returns the highest column number that has changed (plus one). | |
MaxRowChanged | Returns the highest row number that has changed (plus one). | |
MinColChanged | Returns the lowest column number that has changed. | |
MinRowChanged | Returns the lowest row number that has changed. |
Name | Description | |
---|---|---|
Accumulate(BaseColumnCollectionChangedEventArgs) | Accumulate the change state by adding another change state. | |
Accumulate(Int32, Int32, Int32, Boolean) | Accumulates the change state by adding a change info from a column. | |
Add |
Adds the specified event args e.
(Inherited from SelfAccumulateableEventArgs) | |
CreateColumnAddArgs | Create the change state that reflects the addition of one column. | |
CreateColumnCopyOrReplaceArgs | Create the change state that reflects the replace of one column by another (or copying data). | |
CreateColumnMoveArgs | Creates a change state that reflects the move of some columns. | |
CreateColumnRemoveArgs | Creates a change state that reflects the removal of some columns. | |
CreateColumnRenameArgs | Create the change state that reflects the renaming of one column. | |
CreateRowMoveArgs | Creates a change state that reflects the move of some rows (in all columns). | |
Equals |
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) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object) | |
GetHashCode |
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) | |
GetType | Gets the Type of the current instance. (Inherited from Object) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) | |
ToString | Returns a string that represents the current object. (Inherited from Object) |
Name | Description | |
---|---|---|
_hasRowCountDecreased | ||
_maxColChanged | ||
_maxRowChanged | ||
_minColChanged | ||
_minRowChanged |