'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Overloads Public Operator Narrowing CType( _ ByVal nodeElement As UANodeElement _ ) As UANodeId
'Usage
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public UANodeId operator explicit( UANodeElement nodeElement )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: UANodeId^ operator explicit( UANodeElement^ nodeElement )
Parameters
- nodeElement
- The node element to be converted.
Return Value
For a non-null input, returns the node Id with expanded text from the node element. Returns
null
if the input is null
.