dispatchColumnResize method

bool dispatchColumnResize(
  1. FluentDocument document,
  2. FluentTable table,
  3. int colIdx,
  4. double oldWidth,
  5. 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;
}