List of DataTables

StarkStark Syria
edited 10:46PM 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 10:46PM
    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 10:46PM
    Thank you

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.