Converts an OPC UA value rank (an integer) to its string representation.
            
            
            
            
            
            
            
            'Declaration
 
<NotNullAttribute()>
Public Shared Function ValueRankToString( _
   ByVal  As Integer _
) As String
             
        
            
            'Usage
 
Dim valueRank As Integer
Dim value As String
 
value = UAUtilities.ValueRankToString(valueRank)
             
        
            
            [NotNull()]
public static string ValueRankToString( 
   int 
)
             
        
            
            [NotNull()]
public:
static String^ ValueRankToString( 
   int 
) 
             
        
             
        
            Parameters
- valueRank
- The OPC UA value rank (an integer).
Return Value
Returns the string representation of the given OPC UA value rank.
 
            
            
            
            
             
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
            
            See Also