Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxPSFileBasedExplorerItem.FullQualifiedFileName Property

Returns the full-qualified file name.

#Declaration

Delphi
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