'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function FromUANodeElement( _ ByVal nodeElement As IUANodeElement _ ) As UANodeDescriptor
'Usage
Dim nodeElement As IUANodeElement Dim value As UANodeDescriptor value = UANodeDescriptor.FromUANodeElement(nodeElement)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static UANodeDescriptor FromUANodeElement( IUANodeElement nodeElement )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static UANodeDescriptor^ FromUANodeElement( IUANodeElement^ nodeElement )
Parameters
- nodeElement
- The node element to be converted.
Return Value
For a non-null input, returns the node descriptor converted from the give node element. Returns
null
if the input is null
.