Description
Gets or sets the beam power.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Power() As Double
|
[C#] |
---|
public double Power {get; set;}
|
[Managed C++] |
---|
public: __property double get_Power(); public: __property void set_Power(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Power(
double * pVal
);
public: HRESULT put_Power(
double val
);
|
[Java] |
---|
public double getPower();
public void setPower(
double
);
|
[Python - STK API] |
---|
@property
def Power(self) -> float:
@Power.setter
def Power(self, val:float) -> None:
|
See Also