Gets the smallest zero-based index of a row to be extracted from a document table. The default value is negative which means that the smallest row index is not limited.
Returns:
The smallest zero-based index of a row to be extracted from a document table.
setMinRowIndex
public void setMinRowIndex(int value)
Sets the smallest zero-based index of a row to be extracted from a document table. The default value is negative which means that the smallest row index is not limited.
Parameters:
value - The smallest zero-based index of a row to be extracted from a document table.
getMaxRowIndex
public int getMaxRowIndex()
Gets the largest zero-based index of a row to be extracted from a document table. The default value is negative which means that the largest row index is not limited.
Returns:
The largest zero-based index of a row to be extracted from a document table.
setMaxRowIndex
public void setMaxRowIndex(int value)
Sets the largest zero-based index of a row to be extracted from a document table. The default value is negative which means that the largest row index is not limited.
Parameters:
value - The largest zero-based index of a row to be extracted from a document table.
getMinColumnIndex
public int getMinColumnIndex()
Gets the smallest zero-based index of a column to be extracted from a document table. The default value is negative which means that the smallest column index is not limited.
Returns:
The smallest zero-based index of a column to be extracted from a document table.
setMinColumnIndex
public void setMinColumnIndex(int value)
Sets the smallest zero-based index of a column to be extracted from a document table. The default value is negative which means that the smallest column index is not limited.
Parameters:
value - The smallest zero-based index of a column to be extracted from a document table.
getMaxColumnIndex
public int getMaxColumnIndex()
Gets the largest zero-based index of a column to be extracted from a document table. The default value is negative which means that the largest column index is not limited.
Returns:
The largest zero-based index of a column to be extracted from a document table.
setMaxColumnIndex
public void setMaxColumnIndex(int value)
Sets the largest zero-based index of a column to be extracted from a document table. The default value is negative which means that the largest column index is not limited.
Parameters:
value - The largest zero-based index of a column to be extracted from a document table.
getFirstRowContainsColumnNames
public boolean getFirstRowContainsColumnNames()
Gets a value indicating whether column names are to be obtained from the first extracted row of a document table. The default value is false.
If column names are not set to be obtained from the first extracted row of a document table, default column names are used instead. For documents of Spreadsheet file formats, default column names are defined as A, B, C, ... Z, AA, AB, and so on. For documents of other file formats, default column names are defined as Column1, Column2, Column3, and so on.
Returns:
A value indicating whether column names are to be obtained from the first extracted row of a document table.
setFirstRowContainsColumnNames
public void setFirstRowContainsColumnNames(boolean value)
Sets a value indicating whether column names are to be obtained from the first extracted row of a document table. The default value is false.
If column names are not set to be obtained from the first extracted row of a document table, default column names are used instead. For documents of Spreadsheet file formats, default column names are defined as A, B, C, ... Z, AA, AB, and so on. For documents of other file formats, default column names are defined as Column1, Column2, Column3, and so on.
Parameters:
value - A value indicating whether column names are to be obtained from the first extracted row of a document table.