Click or drag to resize

BcfRowLoad Method

[This is preliminary documentation and is subject to change.]

Updates cell values using an other row as data source.

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.0.0-beta7
Syntax
public void Load(
	BcfRow sourceRow,
	Func<BcfColumn, bool> columnPredicate = null,
	bool pragmaticNull = false
)

Parameters

sourceRow
Type: CalculationWorks.BusinessModelBcfRow
The source row.
columnPredicate (Optional)
Type: SystemFuncBcfColumn, Boolean
A function to test each column for a condition.
pragmaticNull (Optional)
Type: SystemBoolean
true to use default(T) as null-value on not nullable columns.
Exceptions
ExceptionCondition
ArgumentNullExceptionsourceRow is null.
InvalidOperationException

BcfDataSet is Locked

BcfUpdateExceptionSee exception for the reason.
Remarks

The updates will be performed in order of column-index (lowest first).

When updating a row with RowState==Valid - triggers will be invoked.

See Also