Class FolderDeleteArgs
Event arguments for the FolderDeleting event.
Inherited Members
Namespace: Gorgon.UI
Assembly: Gorgon.Windows.dll
Syntax
public class FolderDeleteArgs : CancelEventArgs
Properties
| Edit this page View SourceDeleteTask
Property to set or return an asynchronous task for deleting.
Declaration
public Task DeleteTask { get; set; }
Property Value
Type | Description |
---|---|
Task |
DeletionHandled
Property to set or return whether this event has handled the deletion of the directory on our behalf.
Declaration
public bool DeletionHandled { get; set; }
Property Value
Type | Description |
---|---|
bool |
DirectoryPath
Property to return the path to the directory being deleted.
Declaration
public string DirectoryPath { get; }
Property Value
Type | Description |
---|---|
string |
SuppressPrompt
Property to suppress the prompt to ask the user if they are sure they wish to delete.
Declaration
public bool SuppressPrompt { get; set; }
Property Value
Type | Description |
---|---|
bool |