dispatchRowResize method

bool dispatchRowResize(
  1. FluentDocument document,
  2. FluentTable table,
  3. FluentRow row,
  4. double oldHeight,
  5. 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;
}