IHierarchyNodeExtensionsGetFullCodePath Method |
Gets the full path of codes, delimited with the delimiter.
Namespace:
Aloe.EnterpriseOne.Model.Core.Hierarchies
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic static string GetFullCodePath(
this IHierarchyNode node,
string delimiter = "/"
)
<ExtensionAttribute>
Public Shared Function GetFullCodePath (
node As IHierarchyNode,
Optional delimiter As String = "/"
) As String
public:
[ExtensionAttribute]
static String^ GetFullCodePath(
IHierarchyNode^ node,
String^ delimiter = L"/"
)
[<ExtensionAttribute>]
static member GetFullCodePath :
node : IHierarchyNode *
?delimiter : string
(* Defaults:
let _delimiter = defaultArg delimiter "/"
*)
-> string
Parameters
- node
- Type: Aloe.EnterpriseOne.Model.Core.HierarchiesIHierarchyNode
The node for which to get the full path. - delimiter (Optional)
- Type: SystemString
The delimiter.
Return Value
Type:
String
The full path of node codes.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IHierarchyNode. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also