Description
Window identifier (for Connect commands).
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property WinID() As Integer
|
| [C#] |
|---|
public int WinID {get; set;}
|
| [Managed C++] |
|---|
public: __property int get_WinID(); public: __property void set_WinID(
int
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_WinID(
long * pVal
);
public: HRESULT put_WinID(
long newVal
);
|
| [Java] |
|---|
public int getWinID();
public void setWinID(
int
);
|
| [Python - STK API] |
|---|
@property
def WinID(self) -> int:
@WinID.setter
def WinID(self, newVal:int) -> None:
|
See Also