Gets a boolean value. A value considered as false if it is a null or empty string or a string that equals to one of: false, 0 (zero), off, no. Any other value is treated as a true value.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public ReadOnly Property BoolValue As Boolean  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As PropertyValue
Dim value As Boolean
 
value = instance.BoolValue  | 
 
| C# |   | 
|---|
public bool BoolValue {get;} | 
 
| Managed Extensions for C++ |   | 
|---|
public: __property bool get_BoolValue();  | 
 
| C++/CLI |   | 
|---|
public:
property bool BoolValue {
   bool get();
} | 
 
            
            
             
            
			
			
            
            
            
            
            
            Requirements
Platforms: Windows 10, Windows NT, Windows Server
            
            
See Also