'Declaration
<CanBeNullAttribute()> Function TryAppendRelative( _ ByVal more As String, _ ByVal maximumParentDepth As Integer _ ) As StringParsingError
'Usage
Dim instance As _BrowsePath Dim more As String Dim maximumParentDepth As Integer Dim value As StringParsingError value = instance.TryAppendRelative(more, maximumParentDepth)
[CanBeNull()] StringParsingError TryAppendRelative( string more, int maximumParentDepth )
[CanBeNull()] StringParsingError^ TryAppendRelative( String^ more, int maximumParentDepth )
Parameters
- more
- The 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)
.
Return Value
null
if successful; otherwise, some OpcLabs.BaseLib.IStringParsingError indicating the reason of the failure.
This method can return null
(Nothing
in Visual Basic).