CalculationWorks Logo
BcfColumnDefaultValueSourceT ClassCalculationWorks BCF Library 1.1 for .NET Framework 4.5

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

Column behavior item to provide default values for an individual column. This class cannot be inherited.
Inheritance Hierarchy

SystemObject
  CalculationWorks.BusinessModel.BehaviorsBcfColumnBehaviorItemBase
    CalculationWorks.BusinessModel.BehaviorsBcfColumnDefaultValueSourceBaseT
      CalculationWorks.BusinessModel.BehaviorsBcfColumnDefaultValueSourceT

Namespace: CalculationWorks.BusinessModel.Behaviors
Assembly: CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 1.1.0.0
Syntax

public sealed class BcfColumnDefaultValueSource<T> : BcfColumnDefaultValueSourceBase<T>

Type Parameters

T
The value type.

The BcfColumnDefaultValueSourceT type exposes the following members.

Constructors

  NameDescription
Public methodBcfColumnDefaultValueSourceT
Initializes a new instance of the BcfColumnDefaultValueSourceT class
Top
Methods

  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

  NameDescription
Public propertyColumn
Gets the BcfColumn the item belongs to.
(Inherited from BcfColumnBehaviorItemBase.)
Public propertyValue
Gets or sets the value.
Top
Remarks

The Value can be changed at runtime.

To apply a IBcfColumnDefaultValueSource instance to a BcfColumnBehavior add it to the BcfColumnSetup.BehaviorItems.

Only one IBcfColumnDefaultValueSource instance per BcfColumnBehavior allowed.

Examples

In this example a default value source will be added to a column. The default value source will always return the same empty ReadOnlyCollectionT of string.

BcfColumnSetup columnSetup = myTableSetup.Columns["myColumnName"];
columnSetup.BehaviorItems.Add(new BcfColumnDefaultValueSource<Guid>() { Value = new ReadOnlyCollection<string>(new string[] { }) });
See Also

Reference