Description
Specifies whether to display a label.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property IsLabelVisible() As Boolean
|
| [C#] |
|---|
public bool IsLabelVisible {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_IsLabelVisible(); public: __property void set_IsLabelVisible(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_IsLabelVisible(
VARIANT_BOOL * pVal
);
public: HRESULT put_IsLabelVisible(
VARIANT_BOOL IsLabelVisible
);
|
| [Java] |
|---|
public bool getIsLabelVisible();
public void setIsLabelVisible(
bool
);
|
| [Python - STK API] |
|---|
@property
def IsLabelVisible(self) -> bool:
@IsLabelVisible.setter
def IsLabelVisible(self, IsLabelVisible:bool) -> None:
|
See Also