/// <summary> /// Starts searching for windows by its title. /// </summary> /// <param name="title">The window title to search for.</param> /// <param name="comparison">The comparison kind how the window title will be compared.</param> /// <returns>A combinable Use to be able to append additional conditions.</returns> public static CombinableUse Title(string title, CompareKind comparison) { var combinableUse = new CombinableUse(); return(combinableUse.Title(title, comparison)); }
/// <summary> /// Starts searching for windows by its title. By default the CompareKind.ContainsIgnoreCase will be use. /// </summary> /// <param name="title">The window title to search for.</param> /// <returns>A combinable Use to be able to append additional conditions.</returns> public static CombinableUse Title(string title) { var combinableUse = new CombinableUse(); return(combinableUse.Title(title)); }