Click or drag to resize

BcfCellExtensions Class

Extensions for BcfCell
Inheritance Hierarchy
SystemObject
  CalculationWorks.BusinessModelBcfCellExtensions

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public static class BcfCellExtensions

The BcfCellExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAnyOutdated
Gets a value indicating at least one cell is dedicated for recalculation. This method is significant faster than calling IsOutdated(Boolean) for each single cell; especially using exact: .
Public methodStatic memberCompute
Public methodStatic memberGetValueT(BcfCell)
Gets Value preserving boxing. The method does not support type conversions. You can read Int32 from int?-cells as long Value is not null; String from IComparable-cells as long there are strings; you CAN NOT read Int32 from Byte or any other thing that requires explicit or implicit conversions.
Public methodStatic memberGetValueT(BcfCellT)
Redirects to Value
Public methodStatic memberSetValueT(BcfCell, T)
Sets Value without boxing and bypasses the Converter. The method does not support type conversions. You can set Int32 on int?-cells; String on IComparable-cells; but you CAN NOT set Byte on an Int32-cell or any other thing that requires explicit or implicit conversions.
Public methodStatic memberSetValueT(BcfCellT, T)
Redirects to Value = value.
Public methodStatic memberValueEqualsT(BcfCell, T, BcfValueComparisonMode, Boolean)
Compares a specified value with the Value and returns the result.
Public methodStatic memberValueEqualsT(BcfCellT, T, BcfValueComparisonMode, Boolean)
Top
See Also