Reference to report objects

Top  Previous  Next

For referring to report objects, use the object's name. The following example will return the height of the Text1 object:

 

Text1.Height

 

For referring to report properties, use Report variable. The following example returns file name from which a report was loaded.

 

Report.FileName

 

Besides, you can refer to nested object properties. The following example will return a report name:

 

Report.ReportInfo.Name