Click or drag to resize

BcfCellT Class

Represents an individual cell in a table.
Inheritance Hierarchy
SystemObject
  CalculationWorks.BusinessModelBcfCell
    CalculationWorks.BusinessModelBcfCellT

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public abstract class BcfCell<T> : BcfCell

Type Parameters

T
The Value type.

The BcfCellT type exposes the following members.

Properties
  NameDescription
Public propertyCellId
Gets the cell ID.
(Inherited from BcfCell.)
Public propertyColumn
Gets the BcfColumn the cell belongs to.
Public propertyColumnId
Gets the column identifier of the BcfColumn this BcfCell represents.
(Inherited from BcfCell.)
Public propertyColumnIndex
Gets the zero-based index of the BcfColumn this BcfCell represents.
(Inherited from BcfCell.)
Public propertyFaults
Gets the BcfFault objects tagging this cell.
(Inherited from BcfCell.)
Public propertyOwningRow
Gets the BcfRow the cell belongs to.
(Inherited from BcfCell.)
Public propertyTable
Gets the BcfTable the cell belongs to.
(Inherited from BcfCell.)
Public propertyValue
Gets or sets the cells value.
Top
Methods
  NameDescription
Public methodAsValueCellTValue
Returns the cell as IBcfValueCellT if possible; otherwise .
(Inherited from BcfCell.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValueObject
Gets the Value as object.
(Overrides BcfCellGetValueObject.)
Public methodInvalidate
Flags the cells value as outdated.
(Inherited from BcfCell.)
Public methodIsOutdated
Gets a value indicating the computed value is outdated.
(Inherited from BcfCell.)
Public methodIsOutdated(Boolean)
Gets a value indicating the computed value is outdated.
(Inherited from BcfCell.)
Public methodIsValueEquivalent(BcfCellT, BcfValueComparisonMode, Boolean)
Gets a value indicating whether this cells Value equals specified cell-value property.
Public methodIsValueEquivalent(BcfCell, BcfValueComparisonMode, Boolean, Boolean)
Gets a value indicating whether this cell Value property equals specified cell-value property.
(Inherited from BcfCell.)
Public methodIsValueNull
Gets a value that indicates whether the cell Value property is null.
(Inherited from BcfCell.)
Public methodLoad(BcfCellT)
Sets Value using cells value.
Public methodLoad(BcfCell, Boolean)
Sets Value using cells value.
(Inherited from BcfCell.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetDefaultValue
Sets the cells value to columns default value.
(Overrides BcfCellSetDefaultValue.)
Public methodSetNextFromSequenceOrDefaultValue
Sets the cells value to columns default value.
(Overrides BcfCellSetNextFromSequenceOrDefaultValue.)
Public methodSetValueTValue
Sets the value.
Public methodSetValueObject
Sets the value.
(Overrides BcfCellSetValueObject(Object).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodValueEquals
Compares a specified value with the Value property and returns the result.
Public methodValueObjectEquals
Compares the specified value with the Value property and returns the result of equality-check.
(Overrides BcfCellValueObjectEquals(Object, BcfValueComparisonMode, Boolean).)
Top
Extension Methods
  NameDescription
Public Extension MethodGetValueTOverloaded.
Redirects to Value
(Defined by BcfCellExtensions.)
Public Extension MethodGetValueTOverloaded.
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.
(Defined by BcfCellExtensions.)
Public Extension MethodSetValueT(T)Overloaded.
Redirects to Value = value.
(Defined by BcfCellExtensions.)
Public Extension MethodSetValueT(T)Overloaded.
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.
(Defined by BcfCellExtensions.)
Public Extension MethodValueEqualsT(T, BcfValueComparisonMode, Boolean)Overloaded. (Defined by BcfCellExtensions.)
Public Extension MethodValueEqualsT(T, BcfValueComparisonMode, Boolean)Overloaded.
Compares a specified value with the Value and returns the result.
(Defined by BcfCellExtensions.)
Top
See Also