'Declaration
Public Shared Function FindStandardNodeId( _ ByVal name As String, _ ByRef standardNodeId As UANodeId _ ) As Boolean
'Usage
Dim name As String Dim standardNodeId As UANodeId Dim value As Boolean value = UAUtilities.FindStandardNodeId(name, standardNodeId)
public static bool FindStandardNodeId( string name, out UANodeId standardNodeId )
public: static bool FindStandardNodeId( String^ name, [Out] UANodeId^ standardNodeId )
Parameters
- name
- The name for which the standard node Id should be found.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - standardNodeId
- The node Id of a standard node that corresponds to the given name.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
if the node Id has been found; otherwise, returns false
.