Enum LookInType

Enum LookInType

Namespace: Aspose.Cells
Assembly: Aspose.Cells.dll (25.3.0)

Represents look in type.

public enum LookInType

Fields

Comments = 3

Finds object from cell’s comment only. Ignores those cells that have no comment.

FormattedValues = 6

Find object from cell’s formatted value(Aspose.Cells.Cell.StringValue) only.

Formulas = 0

Finds the searched object from formula(Aspose.Cells.Cell.Formula) if the cell is formula, otherwise finds from cell’s original value(same with Aspose.Cells.LookInType.OriginalValues).

OnlyFormulas = 4

Ignores cells that are not formula. For those cells that are formula, finds the searched object from formula(Aspose.Cells.Cell.Formula).

OriginalValues = 5

Find object from cell’s original value only.

Values = 1

Finds object from cell’s original value(Aspose.Cells.Cell.Value) and formatted value(Aspose.Cells.Cell.StringValue).

ValuesExcludeFormulaCell = 2

Ignores cells that are formula. For those cells that are not formula, it is same with Aspose.Cells.LookInType.Values.