[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.FindOptions.LookAt

LookAt Property

LookAt

Gets or sets how search text is matched when this object is used with Find(object, IRange, FindOptions).

Declaration
public LookAt LookAt { get; set; }
Public Property LookAt As LookAt
Examples
worksheet.Range["A1"].Value = "Hello World";
FindOptions options = new FindOptions();
options.LookAt = LookAt.Whole;
LookAt lookAt = options.LookAt;
worksheet.Range["A1:A1"].Find("Hello World", null, options);