[]
Gets or sets how search text is matched when this object is used with Find(object, IRange, FindOptions).
public LookAt LookAt { get; set; }
Public Property LookAt As LookAt
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);