dispatchRowResize method
bool
dispatchRowResize(
- FluentDocument document,
- FluentTable table,
- FluentRow row,
- double oldHeight,
- double newHeight,
Implementation
bool dispatchRowResize(
FluentDocument document,
FluentTable table,
FluentRow row,
double oldHeight,
double newHeight,
) {
for (final plugin in plugins) {
if (plugin.onRowResize(document, table, row, oldHeight, newHeight)) {
return true;
}
}
return false;
}