Interface IPLTableGridType
- All Superinterfaces:
com.helger.commons.id.IHasID<String>
- All Known Implementing Classes:
EPLTableGridType
Custom
PLTable grid specification.- Author:
- Philip Helger
-
Method Summary
Modifier and TypeMethodDescriptionvoidapplyGridToTable(PLTable aTable, int nStartRowIncl, int nEndRowIncl, int nStartColumnIncl, int nEndColumnIncl, BorderStyleSpec aBSS) Apply this grid to the passed elements of the provided table.default voidapplyGridToTable(PLTable aTable, IPLCellRange aCellRange, BorderStyleSpec aBSS) Apply this grid to the passed cell range of the provided table.default voidapplyGridToTable(PLTable aTable, BorderStyleSpec aBSS) Apply this grid to the whole provided table.Methods inherited from interface com.helger.commons.id.IHasID
getID
-
Method Details
-
applyGridToTable
Apply this grid to the whole provided table.- Parameters:
aTable- Table to modify. May not benull.aBSS- Border style specification to be used. May not benull.
-
applyGridToTable
default void applyGridToTable(@Nonnull PLTable aTable, @Nonnull IPLCellRange aCellRange, @Nonnull BorderStyleSpec aBSS) Apply this grid to the passed cell range of the provided table.- Parameters:
aTable- Table to modify. May not benull.aCellRange- The cell range to which it should be applied. May not benull.aBSS- Border style specification to be used. May not benull.
-
applyGridToTable
void applyGridToTable(@Nonnull PLTable aTable, int nStartRowIncl, int nEndRowIncl, int nStartColumnIncl, int nEndColumnIncl, @Nonnull BorderStyleSpec aBSS) Apply this grid to the passed elements of the provided table.- Parameters:
aTable- Table to modify. May not benull.nStartRowIncl- Start row index (inclusive).nEndRowIncl- End row index (inclusive).nStartColumnIncl- Start column index (inclusive).nEndColumnIncl- End column index (inclusive).aBSS- Border style specification to be used. May not benull.
-