'Declaration
Sub AppendRelative( _ ByVal more As String, _ ByVal maximumParentDepth As Integer _ )
'Usage
Dim instance As _BrowsePath Dim more As String Dim maximumParentDepth As Integer instance.AppendRelative(more, maximumParentDepth)
void AppendRelative( string more, int maximumParentDepth )
void AppendRelative( String^ more, int maximumParentDepth )
Parameters
- more
- Relative browse path string to be appended to the current browse path.
The value of this parameter can be
null
(Nothing
in Visual Basic). - maximumParentDepth
- How many levels above the base path can be referenced.
Valid values of this parameter are in the range from
0
to2147483647 (Int32.MaxValue)
.