/// <summary> /// Gets the entries of the specified log window /// Note: Assumes that the window is a ListView and it has at least 20 columns /// -- Might throw a Helper_dll.Helper.HelperException /// </summary> /// <param name="logWindowHandle">handle to a ListView</param> /// <returns>string array representing the entries in the ListView; first dimension is the row, the second is the column</returns> protected static string[][] GetLogEntries(IntPtr logWindowHandle) { // TODO: use tempfile if the log is too large return(Base.GetListViewEntries(logWindowHandle, 20)); }