Description
Opt whether to use a background with the data display.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property UseBackground() As Boolean
|
| [C#] |
|---|
public bool UseBackground {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_UseBackground(); public: __property void set_UseBackground(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_UseBackground(
VARIANT_BOOL * pVal
);
public: HRESULT put_UseBackground(
VARIANT_BOOL UseBackground
);
|
| [Java] |
|---|
public bool getUseBackground();
public void setUseBackground(
bool
);
|
| [Python - STK API] |
|---|
@property
def UseBackground(self) -> bool:
@UseBackground.setter
def UseBackground(self, UseBackground:bool) -> None:
|
See Also