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

TdxPSFileBasedExplorer.FindItemByFullQualifiedFileName(string) Method

Returns an object representing the report item specified by the full-qualified file name.

#Declaration

Delphi
function FindItemByFullQualifiedFileName(const AFullQualifiedName: string): TdxPSFileBasedExplorerItem;

#Parameters

Name Type
AFullQualifiedName string

#Returns

Type
TdxPSFileBasedExplorerItem

#Remarks

The FindItemByFullQualifiedFileName method can be used to obtain a TdxPSFileBasedExplorerItem object representing the item specified by its full-qualified file name. The desired file name should be passed as the AFullQualifiedName parameter. If the item with the specified file name doesn’t exist, nil is returned.

You can also access report items by traversing through the report items tree. Use the Root property to access the explorer’s root folder, nesting folders can be accessed using a folder’s Folders and FolderCount properties. Report items residing within a particular folder can be accessed using the folder’s Items and ItemCount properties.

See Also