Interface IMultiFilesSelectable
Interface that provides a collection of selected files.
Namespace: Telerik.WinControls.FileDialogs
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IMultiFilesSelectable
Properties
FileNames
Gets or sets a string containing the selected file names, including their paths.
Declaration
IEnumerable<string> FileNames { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|
SafeFileNames
Gets or sets a string containing the selected file names, excluding their paths.
Declaration
IEnumerable<string> SafeFileNames { get; }
Property Value
System.Collections.Generic.IEnumerable<System.String>
|