List of DataTables

StarkStark Syria
edited 1:00PM in FastReport .NET
Hi , have a good day


How I can get a list of fastreport datatables , in C#





thank in advance


kind regards

Comments

  • edited 1:00PM
    Hello,

    Use the following code to enumerate all TableDataSource objects in a report:
          foreach (Base c in FReport.Dictionary.AllObjects)
          {
            if (c is TableDataSource)
            {
              TableDataSource table = c as TableDataSource;
              // do something with table
            }
          }
    
  • StarkStark Syria
    edited 1:00PM
    Thank you

Leave a Comment