Description
Opt whether to show the title of the data display.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Title() As Boolean
|
[C#] |
---|
public bool Title {get; set;}
|
[Managed C++] |
---|
public: __property bool get_Title(); public: __property void set_Title(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Title(
VARIANT_BOOL * pVal
);
public: HRESULT put_Title(
VARIANT_BOOL Title
);
|
[Java] |
---|
public bool getTitle();
public void setTitle(
bool
);
|
[Python - STK API] |
---|
@property
def Title(self) -> bool:
@Title.setter
def Title(self, Title:bool) -> None:
|
See Also