Cells.FindFormula

Cells.FindFormula method

Finds the cell with the input string.

[Obsolete("Use Cells.Find(object,Cell,FindOptions) method instead.")]
[EditorBrowsable(EditorBrowsableState.Never)]
public Cell FindFormula(string formula, Cell previousCell)
ParameterTypeDescription
formulaStringThe formula to search for.
previousCellCellPrevious cell with the same formula. This parameter can be set to null if searching from the start.

Return Value

Cell object.

Remarks

Returns null (Nothing) if no cell is found. NOTE: This member is now obsolete. Instead, please use Cells.Find(object,Cell,FindOptions) method with LookInType as LookInType.OnlyFormulas and LookAtType as LookAtType.EntireContent. This member will be removed 12 months later since November 2018. Aspose apologizes for any inconvenience you may have experienced.

See Also