Skip to main content

MapStorageFileSource.StorageFolderType Property

Specifies the type of the folder used to store map files (e.g., images or other resources).

Namespace: DevExpress.UI.Xaml.Map

Assembly: DevExpress.UI.Xaml.Map.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public StorageFolderType StorageFolderType { get; set; }

Property Value

Type Description
StorageFolderType

A StorageFolderType enumeration value.

Available values:

Name Description
Unknown

The storage folder type is unknown.

KnownDocuments

The Documents library, which corresponds to the Windows.Storage.KnownFolders.DocumentsLibrary property.

KnownHomeGroup

The HomeGroup folder, which corresponds to the Windows.Storage.KnownFolders.HomeGroup property.

KnownRemovableDevices

The removable devices folder, which corresponds to the Windows.Storage.KnownFolders.RemovableDevices property.

KnownMediaServerDevices

The folder of media server (DLNA) devices, which corresponds to the Windows.Storage.KnownFolders.MediaServerDevices property.

AppRoaming

The root folder in the roaming app data store, which corresponds to the ApplicationData.Current.RoamingFolder property.

AppLocal

The root folder in the local app data store, which corresponds to the ApplicationData.Current.LocalFolder property.

AppTemporary

The root folder in the temporary app data store, which corresponds to the ApplicationData.Current.TemporaryFolder property.

See Also