Interface IPLTableGridType
-
- All Superinterfaces:
com.helger.commons.id.IHasID<String>
- All Known Implementing Classes:
EPLTableGridType
public interface IPLTableGridType extends com.helger.commons.id.IHasID<String>
CustomPLTablegrid specification.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidapplyGridToTable(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.
-
-
-
Method Detail
-
applyGridToTable
default void applyGridToTable(@Nonnull PLTable aTable, @Nonnull BorderStyleSpec aBSS)
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.
-
-