Description
Fixed Delta V minimum eccentricity. Uses Rate Dimension.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property DeltaVMin() As Double
|
[C#] |
---|
public double DeltaVMin {get; set;}
|
[Managed C++] |
---|
public: __property double get_DeltaVMin(); public: __property void set_DeltaVMin(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_DeltaVMin(
double * pVal
);
public: HRESULT put_DeltaVMin(
double DeltaVMin
);
|
[Java] |
---|
public double getDeltaVMin();
public void setDeltaVMin(
double
);
|
[Python - STK API] |
---|
@property
def DeltaVMin(self) -> float:
@DeltaVMin.setter
def DeltaVMin(self, DeltaVMin:float) -> None:
|
See Also