Description
The window caption. Can only be set within UI plugins for the non unique windows they own.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Caption() As String
|
[C#] |
---|
public string Caption {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_Caption(); public: __property void set_Caption(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Caption(
BSTR * pVal
);
public: HRESULT put_Caption(
BSTR caption
);
|
[Java] |
---|
public String getCaption();
public void setCaption(
String
);
|
[Python - STK API] |
---|
@property
def Caption(self) -> str:
@Caption.setter
def Caption(self, caption:str) -> None:
|
See Also