Description
Gets or sets the height of the overlay. The unit in which the height is defined is specified by the
Height Unit property.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Height() As Double
|
[C#] |
---|
public double Height {get; set;}
|
[Managed C++] |
---|
public: __property double get_Height(); public: __property void set_Height(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Height(
double * pRetVal
);
public: HRESULT put_Height(
double Height
);
|
[Java] |
---|
public double getHeight();
public void setHeight(
double
);
|
[Python - STK API ] |
---|
@property
def Height(self) -> float:
@Height.setter
def Height(self, Height:float) -> None:
|
See Also