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

TcxShellFolderCapability Enum

Enumerates file system capability attributes of a shell item.

#Declaration

Delphi
TcxShellFolderCapability = (
    sfcCanCopy,
    sfcCanDelete,
    sfcCanLink,
    sfcCanMove,
    sfcCanRename,
    sfcDropTarget,
    sfcHasPropSheet
);

#Members

Name Description
sfcCanCopy

Allows users to copy the shell item.

sfcCanDelete

Allows users to delete the shell item. For example, users can click the Delete item in the shell item’s context menu or press the Del key when the shell item is selected.

Allows users to create a shortcut for the shell item.

sfcCanMove

Allows users to move the shell item.

sfcCanRename

Allows users to rename the shell item.

sfcDropTarget

The shell item is a valid drop target for drag-and-drop operations.

sfcHasPropSheet

The shell item has a property sheet, that is, the Properties dialog that allows users to view and edit the shell item’s properties.

#Remarks

The TcxShellFolderCapabilities type references the TcxShellFolderCapability type.

See Also