Loads a root directory with given path, where all subdirectories contained in the SelectedUrl property are loaded

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public override DirectoryItem ResolveRootDirectoryAsTree(
	string path
)
Visual Basic
Public Overrides Function ResolveRootDirectoryAsTree ( 
	path As String
) As DirectoryItem
Visual C++
public:
virtual DirectoryItem^ ResolveRootDirectoryAsTree(
	String^ path
) override
F#
abstract ResolveRootDirectoryAsTree : 
        path : string -> DirectoryItem 
override ResolveRootDirectoryAsTree : 
        path : string -> DirectoryItem 

Parameters

path
Type: System..::..String
the root directory path, passed by the FileBrowser

Return Value

Type: DirectoryItem
The root DirectoryItem or null if such does not exist

Remarks

The ImagesPaths, DocumentsPaths, etc properties of RadEditor allow multiple root items to be specified, separated by comma, e.g. Photos,Paintings,Diagrams. The FileBrowser class calls the ResolveRootDirectoryAsTree method for each of them.

See Also