Interface IDialogViewModel
Interface that provides base information for all file dialog view models.
Inherited Members
Namespace: Telerik.WinControls.FileDialogs
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IDialogViewModel : ICurrentDirectoryViewModel
Properties
CustomPlaces
Gets or sets the collection of custom places.
Declaration
IEnumerable<DirectoryInfoWrapper> CustomPlaces { get; }
Property Value
System.Collections.Generic.IEnumerable<DirectoryInfoWrapper>
|
InitialDirectory
Gets or sets the initial directory.
Declaration
DirectoryBaseWrapper InitialDirectory { get; }
Property Value
DirectoryBaseWrapper
|
Layouts
Gets the available layouts for the dialog explorer.
Declaration
IEnumerable<LayoutConfigurationModel> Layouts { get; }
Property Value
System.Collections.Generic.IEnumerable<LayoutConfigurationModel>
|
Name
Gets or sets a string representing the full path to the current file system object.
Declaration
string Name { get; }
Property Value
System.String
|
Path
Gets a string representing the path to the current folder.
Declaration
string Path { get; }
Property Value
System.String
|
SelectedLayout
Gets the selected LayoutConfigurationModel.
Declaration
LayoutConfigurationModel SelectedLayout { get; }
Property Value
LayoutConfigurationModel
|
ShowHiddenFiles
Gets or sets a boolean value indicating whether the dialog shows hidden files and folders.
Declaration
bool ShowHiddenFiles { get; }
Property Value
System.Boolean
|