Skip to main content

TdxPSFileBasedExplorer.FindItemByFullQualifiedFileName(string) Method

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

Declaration

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