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

Provides data for the ChildFileDeleted event.

Definition

Namespace:Telerik.WinControls.FileDialogs

Assembly:Telerik.WinControls.UI.dll

Syntax:

C#
public class ChildFileDeletedEventArgs : EventArgs

Inheritance: objectEventArgsChildFileDeletedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ChildFileDeletedEventArgs class.

C#
public ChildFileDeletedEventArgs(string filePath, DirectoryInfoWrapper parentWrapper, bool isRename = false)
Parameters:filePathstring

The path that no longer exists.

parentWrapperDirectoryInfoWrapper

The DirectoryInfoWrapper of the parent folder.

isRenamebool

Indicates whether the file is being renamed causing deleted event.

Properties

Gets the path that no longer exists.

C#
public string FilePath { get; }

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

C#
public bool IsRenamed { get; }

Gets the DirectoryInfoWrapper of the parent folder.

C#
public DirectoryInfoWrapper ParentWrapper { get; }