dispatchColumnResize method
bool
dispatchColumnResize(
- FluentDocument document,
- FluentTable table,
- int colIdx,
- double oldWidth,
- double newWidth,
Implementation
bool dispatchColumnResize(
FluentDocument document,
FluentTable table,
int colIdx,
double oldWidth,
double newWidth,
) {
for (final plugin in plugins) {
if (plugin.onColumnResize(document, table, colIdx, oldWidth, newWidth)) {
return true;
}
}
return false;
}