Click or drag to resize

BcfCellExtensionsAnyOutdated Method

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: .

Namespace:  CalculationWorks.BusinessModel
Assembly:  CalculationWorks.BusinessModel (in CalculationWorks.BusinessModel.dll) Version: 4.2.0
Syntax
public static bool AnyOutdated(
	this IEnumerable<BcfCell> cells,
	bool exact
)

Parameters

cells
Type: System.Collections.GenericIEnumerableBcfCell
The cell enumeration, method may enumerate multiple times.
exact
Type: SystemBoolean
to perform a fast check and return if cell might be outdated; to perform a deep check and return exact result.

Return Value

Type: Boolean
A value indicating at least one cell is dedicated for recalculation.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableBcfCell. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also