FileListBox.Path Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the current path for a FileListBox.
public:
property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public string Path { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Path : string with get, set
Public Property Path As String
Property Value
A String
that contains the current path, not including the file name.
- Attributes
Remarks
The value of the Path
property is a string indicating a path, such as C:\Ob or C:\Windows\System. For a FileListBox control, the default is the current path when the control is created at run time.
Use this property when you are building an application's file-browsing and manipulation capabilities. Setting the Path
property has effects similar to the MS-DOS chdir
command; relative paths are allowed with or without a drive specification. Specifying only a drive with a colon (:) selects the current directory on that drive.
The Path
property can also be set to a qualified network path without a drive connection using the following syntax:
\\servername\sharename\path
Changing the value of Path
for a FileListBox control generates an PathChange event.
Note
Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.