Gets or sets the vehicle used in the mission.
Read-write property
[Visual Basic .NET] |
---|
Public Property Vehicle() As IAgAvtrVehicle |
[C#] |
---|
public IAgAvtrVehicle Vehicle {get; set;} |
[Managed C++] |
---|
public: __property IAgAvtrVehicle ^ get_Vehicle(); |
[Unmanaged C++] |
---|
public: HRESULT get_Vehicle( IAgAvtrVehicle ** ppAvtrVehicle ); public: HRESULT put_Vehicle( IAgAvtrVehicle pAvtrVehicle ); |
[Java] |
---|
public IAgAvtrVehicle getVehicle(); public void setVehicle( IAgAvtrVehicle ); |
[Python - STK API ] |
---|
@property def Vehicle(self) -> "IAgAvtrVehicle": @Vehicle.setter def Vehicle(self, pAvtrVehicle:"IAgAvtrVehicle") -> None: |