Class ChildFileDeletedEventArgs
Provides data for the ChildFileDeleted event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.FileDialogs
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ChildFileDeletedEventArgs : EventArgs
Constructors
ChildFileDeletedEventArgs(String, DirectoryInfoWrapper, Boolean)
Initializes a new instance of the ChildFileDeletedEventArgs class.
Declaration
public ChildFileDeletedEventArgs(string filePath, DirectoryInfoWrapper parentWrapper, bool isRename = false)
Parameters
System.String
filePath
The path that no longer exists. |
DirectoryInfoWrapper
parentWrapper
The DirectoryInfoWrapper of the parent folder. |
System.Boolean
isRename
Indicates whether the file is being renamed causing deleted event. |
Properties
FilePath
Gets the path that no longer exists.
Declaration
public string FilePath { get; }
Property Value
System.String
|
IsRenamed
Gets a value indicating whether the deleted file is a result of rename operation.
Declaration
public bool IsRenamed { get; }
Property Value
System.Boolean
|
ParentWrapper
Gets the DirectoryInfoWrapper of the parent folder.
Declaration
public DirectoryInfoWrapper ParentWrapper { get; }
Property Value
DirectoryInfoWrapper
|