New to Telerik Document ProcessingStart a free 30-day trial

Result of a find operation containing the located cell position and its raw and formatted values.

Definition

Namespace:Telerik.Windows.Documents.Spreadsheet.Model

Assembly:Telerik.Windows.Documents.Spreadsheet.dll

Syntax:

C#
public class FindResult

Inheritance: objectFindResult

Methods

Determines whether the specified object is equal to the current object.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current object.

Returns:

bool

True if the specified object is equal to the current object; otherwise, false.

Overrides: object.Equals(object)

Serves as a hash function for a particular type.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: object.GetHashCode()

Properties

Worksheet and cell index identifying the matched cell location.

C#
public WorksheetCellIndex FoundCell { get; }
Property Value:

The found cell.

Unformatted underlying value of the cell, such as the formula text or the numeric value as text.

C#
public string RawValue { get; }
Property Value:

The raw value.

Formatted display text of the cell after evaluating formulas and applying number formatting.

C#
public string ResultValue { get; }
Property Value:

The result value.