[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.FindOptions.LookIn

LookIn Property

LookIn

Gets or sets the data type that the search looks in.

Declaration
public FindLookIn LookIn { get; set; }
Public Property LookIn As FindLookIn
Examples
worksheet.Range["A1"].Value = "Hello World";
worksheet.Range["A2"].Formula = "=\"Hello\"&\" World\"";
FindOptions options = new FindOptions();
options.LookIn = FindLookIn.Formulas;
FindLookIn lookIn = options.LookIn;
worksheet.Range["A1:A2"].Find("Hello", null, options);