int _ColSpan; // # of columns spanned internal MatrixCellEntry(Rows d, ReportItem ri) { _Data = d; _DisplayItem = ri; _ColSpan = 1; }
public void MatrixCellStart(Matrix m, ReportItem ri, int row, int column, Row r, float h, float w, int colSpan) { _ExcelCol++; }
public void MatrixCellEnd(Matrix m, ReportItem ri, int row, int column, Row r) { }
private static bool InList(ReportItem tb) { Type tp = tb.Parent.Parent.GetType(); return(tp == typeof(List)); }