Click or drag to resize

IBcfValueCellT Interface

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public interface IBcfValueCell<T>
where T : struct, new()

Type Parameters

T
The data type.

The IBcfValueCellT type exposes the following members.

Properties
  NameDescription
Public propertyCell
The cell.
Public propertyIsNullable
Gets a value indicating the cell can accept -value.
Public propertyValueColumn
Top
Methods
  NameDescription
Public methodAsNotNullableCell
Returns the cell as not-nullable of T if possible; otherwise .
Public methodAsNullableCell
Returns the cell as nullable of T if possible; otherwise .
Public methodGetValue
Returns the cells Value. The return value is always a nullable type GetValueOrFallback(T).
Public methodGetValueOrFallback
Returns the cells Value. The return value is always a not-nullable type GetValue.
Public methodSetValue
Public methodSetValueOrFallback
Sets cells Value. The value is always nullable SetValue(T).
Public methodValueEquals
Compares a specified value with the Value and returns the result.
Top
See Also