Custom Components Export to pdf

  Custom Components inherit from FastReport.CellularTextObject,when export to pdf , can not get the  custom table ,Can turn GetTable() into virtual for override

public TableObject GetTable()

    {

      return GetTable(autoRows: false);

    }


==>

public virtual TableObject GetTable()

    {

      return GetTable(autoRows: false);

    }

Leave a Comment