Skip to main content

TdxPSFileBasedExplorerItem.FullQualifiedFileName Property

Returns the full-qualified file name.

Declaration

property FullQualifiedFileName: string read;

Property Value

Type
string

Remarks

Use the FullQualifiedFileName property to determine the full-qualified name of the file where the report item’s data is stored. If you need to get the file name without the path to it, use the FileName property instead. If you want to get the path without the file name, read the FullQualifiedFilePath property value. Thus, the FullQualifiedFileName property value is the concatenation of the strings returned by the FullQualifiedFilePath and FileName properties.

Suppose that a report item’s data is stored in the C:\Reports\NewReport.rps file. The table below lists the properties mentioned and their return values in this case.

Property Value
FileName ‘NewReport.rps’
FullQualifiedFileName ‘C:\Reports\NewReport.rps’
FullQualifiedFilePath ‘C:\Reports'
See Also