Description
The window horizontal position.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Left() As Integer
|
[C#] |
---|
public int Left {get; set;}
|
[Managed C++] |
---|
public: __property int get_Left(); public: __property void set_Left(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Left(
long * pVal
);
public: HRESULT put_Left(
long NewVal
);
|
[Java] |
---|
public int getLeft();
public void setLeft(
int
);
|
[Python - STK API] |
---|
@property
def Left(self) -> int:
@Left.setter
def Left(self, NewVal:int) -> None:
|
See Also