Determines whether the type value is in the valid range.
            
            
            
            
            
            
            
            'Declaration
 
<PureAttribute()>
Public Shared Function IsValidTypeValue( _
   ByVal  As Integer _
) As Boolean
             
        
            
            'Usage
 
Dim numericalValue As Integer
Dim value As Boolean
 
value = VarType.IsValidTypeValue(numericalValue)
             
        
            
            [Pure()]
public static bool IsValidTypeValue( 
   int 
)
             
        
            
            [Pure()]
public:
static bool IsValidTypeValue( 
   int 
) 
             
        
             
        
            Parameters
- numericalValue
 
- The type value to be tested.
 
            
            Return Value
True if the type value is in the valid range; false otherwise.
 
            
            
            
            
             
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