New to Telerik UI for WinFormsStart a free 30-day trial

Determines how the files and folders in the ExplorerControl can be edited. Note that the shell context menu and drag and drop operations are handled separately.

Definition

Namespace:Telerik.WinControls.FileDialogs

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
[Flags]
public enum EditingOptions

Fields

All options in the menu are available.

C#
All = Cut | Copy | Paste | Delete | Rename | NewFolder

Copy is enabled.

C#
Copy = 2

Cut is enabled.

C#
Cut = 1

Delete is enabled.

C#
Delete = 8

New folder is enabled.

C#
NewFolder = 32

Editing is not allowed.

C#
None = 0

Paste is enabled.

C#
Paste = 4

Rename is enabled.

C#
Rename = 16