| FilePathPath Property |
This is used to get or set the path to use.
Namespace: SandcastleBuilder.UtilsAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2014.11.22.0
Syntax public virtual string Path { get; set; }
Public Overridable Property Path As String
Get
Set
public:
virtual property String^ Path {
String^ get ();
void set (String^ value);
}
abstract Path : string with get, set
override Path : string with get, set
Property Value
Type:
StringWhen set, if the path is not rooted (a relative path),
IsFixedPath is set to
false. If rooted (an absolute path), it is not changed. This property always returns a fully
qualified path but without any environment variable expansions.
If set to a null or empty string, the file path is cleared and is considered to be undefined.
Examples FilePath path = new FilePath();
path.Path = @"..\..\Test.txt";
path.Path = @"C:\My Documents\Info.doc";
path.Path = @"%HOMEDRIVE%%HOMEPATH%\Favorites\*.*";
Dim path As New FilePath()
path.Path = "..\..\Test.txt"
path.Path = "C:\My Documents\Info.doc"
path.Path = "%HOMEDRIVE%%HOMEPATH%\Favorites\*.*"
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also