Skip to main content
A newer version of this page is available. .

ASPxHtmlEditor.FlashSelectorFolderCreating Event

Fires on the server side before a folder is created within the Flash Selector and allows you to cancel the action.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v18.2.dll

Declaration

public event FileManagerFolderCreateEventHandler FlashSelectorFolderCreating

Event Data

The FlashSelectorFolderCreating event's data class is FileManagerFolderCreateEventArgs. The following properties provide information specific to this event:

Property Description
Cancel Gets or sets a value indicating whether the action that raised the event should be canceled. Inherited from FileManagerActionEventArgsBase.
ErrorText Gets or sets a text for the explanatory message. Inherited from FileManagerActionEventArgsBase.
Name Gets the name of the newly created folder.
ParentFolder Gets the parent folder for the newly created item.

Remarks

Prior to each time a folder is created within the Flash Selector, the FlashSelectorFolderCreating event occurs, allowing you to cancel folder creation. You can use the event parameter’s properties to identify a name (FileManagerFolderCreateEventArgs.Name) and a parent folder (FileManagerFolderCreateEventArgs.ParentFolder) for the newly created folder. To cancel the folder creation operation, set the FileManagerActionEventArgsBase.Cancel property to true. To show a message explaining the reason for the cancellation, specify the FileManagerActionEventArgsBase.ErrorText property.

To customize the Flash Selector settings use the HtmlEditorInsertFlashDialogSettings.SettingsFlashSelector property.

See Also