Description
The factor by which the constraint error is to be multiplied. This is used to emphasize/de-emphasize the importance of one constraint relative to the others. Dimensionless.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Weight() As Double
|
| [C#] |
|---|
public double Weight {get; set;}
|
| [Managed C++] |
|---|
public: __property double get_Weight(); public: __property void set_Weight(
double
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Weight(
double * pVal
);
public: HRESULT put_Weight(
double newVal
);
|
| [Java] |
|---|
public double getWeight();
public void setWeight(
double
);
|
| [Python - STK API] |
|---|
@property
def Weight(self) -> float:
@Weight.setter
def Weight(self, newVal:float) -> None:
|
See Also