Class
ChildFileDeletedEventArgs

Provides data for the ChildFileDeleted event.

Definition

Namespace:Telerik.Windows.Controls.FileDialogs

Assembly:Telerik.Windows.Controls.FileDialogs.dll

Syntax:

cs-api-definition
public class ChildFileDeletedEventArgs : EventArgs

Inheritance: objectEventArgsChildFileDeletedEventArgs

Inherited Members EventArgs.Empty

Constructors

ChildFileDeletedEventArgs(string, DirectoryInfoWrapper, bool)

Initializes a new instance of the ChildFileDeletedEventArgs class.

Declaration

cs-api-definition
public ChildFileDeletedEventArgs(string filePath, DirectoryInfoWrapper parentWrapper, bool isRename = false)

Parameters

filePath

string

The path that no longer exists.

parentWrapper

DirectoryInfoWrapper

The DirectoryInfoWrapper of the parent folder.

isRename

bool

Indicates whether the file is being renamed causing deleted event.

Properties

FilePath

Gets the path that no longer exists.

Declaration

cs-api-definition
public string FilePath { get; }

Property Value

string

IsRenamed

Gets a value indicating whether the deleted file is a result of rename operation.

Declaration

cs-api-definition
public bool IsRenamed { get; }

Property Value

bool

ParentWrapper

Gets the DirectoryInfoWrapper of the parent folder.

Declaration

cs-api-definition
public DirectoryInfoWrapper ParentWrapper { get; }

Property Value

DirectoryInfoWrapper