 | BcfChangeSet Constructor |
[This is preliminary documentation and is subject to change.]
Creates a new instance.
Namespace:
CalculationWorks.BusinessModel
Assembly:
CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
Syntaxpublic BcfChangeSet(
ImmutableHashSet<BcfRow> addedRows,
ImmutableHashSet<BcfRow> removedRows,
ImmutableHashSet<BcfCell> updatedCells,
ImmutableHashSet<BcfParentRelationCell> updatedParentRow,
ImmutableHashSet<BcfChildRelationCell> updatedChildRows
)
Public Sub New (
addedRows As ImmutableHashSet(Of BcfRow),
removedRows As ImmutableHashSet(Of BcfRow),
updatedCells As ImmutableHashSet(Of BcfCell),
updatedParentRow As ImmutableHashSet(Of BcfParentRelationCell),
updatedChildRows As ImmutableHashSet(Of BcfChildRelationCell)
)
Parameters
- addedRows
- Type: ImmutableHashSetBcfRow
Added rows. - removedRows
- Type: ImmutableHashSetBcfRow
Removed rows. - updatedCells
- Type: ImmutableHashSetBcfCell
Updated cells. - updatedParentRow
- Type: ImmutableHashSetBcfParentRelationCell
Changed parentrow cells. - updatedChildRows
- Type: ImmutableHashSetBcfChildRelationCell
Changed childrow cells.
See Also