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

TdxDBBasedExplorerItemType Enum

Lists explorer item types.

#Declaration

Delphi
TdxDBBasedExplorerItemType = (
    eitFolder,
    eitItem
);

#Members

Name
eitFolder
eitItem

#Remarks

Explorer components (TdxPSFileBasedExplorer and TdxPSDBBasedExplorer) display folders and items, which are represented by objects that have the same ancestor. So, sometimes it is required to identify the item type (whether it is a report item or a folder). The TdxDBBasedExplorerItemType enumerator lists values used for that purpose.

The following values are available.

Value Meaning
eitFolder The item represents a folder.
eitItem The item represents a report.

Values listed in the enumerator are used to set a field value in the TdxDBBasedExplorerItemUniqueID structure.

See Also