Description
The desired value - the value at which the condition will be satisfied. Dimension depends on context.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property Trip() As System.Object
|
| [C#] |
|---|
public System.Object Trip {get; set;}
|
| [Managed C++] |
|---|
public: __property VARIANT get_Trip(); public: __property void set_Trip(
VARIANT
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_Trip(
VARIANT * pVal
);
public: HRESULT put_Trip(
VARIANT newVal
);
|
| [Java] |
|---|
public AgVariant getTrip();
public void setTrip(
AgVariant
);
|
| [Python - STK API] |
|---|
@property
def Trip(self) -> typing.Any:
@Trip.setter
def Trip(self, newVal:typing.Any) -> None:
|
See Also