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

TcxShellFolderAttribute Enum

Enumerates file system attributes of a shell item.

#Declaration

Delphi
TcxShellFolderAttribute = (
    sfaGhosted,
    sfaHidden,
    sfaIsSlow,
    sfaLink,
    sfaReadOnly,
    sfaShare
);

#Members

Name Description
sfaGhosted

The shell item is shown as unavailable to users (semi-transparent).

sfaHidden

The shell item is hidden in the file system. The shell control does not display it unless the corresponding option is enabled.

sfaIsSlow

The file system indicates that file access operations through IStream or other storage interfaces are slow for the shell item. Applications should avoid accessing shell items marked with the IsSlow attribute.

The shell item is a shortcut.

sfaReadOnly

The shell item is read-only. It is impossible to create new shell items within a read-only folder shell item.

sfaShare

The shell item is shared.

#Remarks

The TcxShellFolderAttributes type references the TcxShellFolderAttribute type.

See Also