Skip to content

Commit

Permalink
Now indicates more clearly what base use.
Browse files Browse the repository at this point in the history
  • Loading branch information
CyraxSputnik committed Sep 9, 2023
1 parent dd647db commit e4b0bfb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ public interface IDataTableColumnsToSearch
IDataTableExtractorWorksheetConfiguration ColumnHeader(string columnHeader);

/// <summary>
/// The column index to search inside the worksheet(s). All the column indexes by default have
/// The column index to search inside the worksheet(s).
/// Column indexes in Excel are 1-based.
/// All the column indexes by default have
/// the starting row to one.
/// </summary>
/// <param name="columnIndex"></param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,16 @@ namespace JdeJabali.JXLDataTableExtractor.Configuration
{
public interface IDataTableExtractorSearchConfiguration
{
/// <summary>
/// Worksheet indexes in Excel are 0-based.
/// </summary>
/// <exception cref="ArgumentException"/>
/// <exception cref="DuplicateWorksheetException"/>
IDataTableExtractorSearchConfiguration Worksheet(int worksheetIndex);

/// <summary>
/// Worksheet indexes in Excel are 0-based.
/// </summary>
/// <exception cref="ArgumentException"/>
/// <exception cref="DuplicateWorksheetException"/>
IDataTableExtractorSearchConfiguration Worksheets(int[] worksheetIndexes);
Expand Down

0 comments on commit e4b0bfb

Please sign in to comment.