Gets or sets a value that determines whether the foreground and background colors are switched.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property Inverse As Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Vt
Dim value As Boolean
instance.Inverse = value
value = instance.Inverse |
| C# | |
|---|
public bool Inverse {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property bool get_Inverse();
public: __property void set_Inverse(
bool value
); |
| C++/CLI | |
|---|
public:
property bool Inverse {
bool get();
void set ( bool value);
} |
Property Value
true if the foreground and background colors should be switched; false otherwise. The default value is false.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also