Skip to content

Opposingmovement_vehicles

Type ISIAPIOpposingmovement_vehicles · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID D066A4E6-657C-4F60-8E6C-31897846E965

Declaration

[Guid("D066A4E6-657C-4F60-8E6C-31897846E965")]
public interface ISIAPIOpposingmovement_vehicles

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOpposingmovement_vehicle
this[] ISIAPIOpposingmovement_vehicle

Methods

Method Returns Summary
OpposingmovementVehicleExists(int, int) bool

Properties

Count

int Count { get; }

Type int

Code samples
int count = opposingmovement_vehicles.Count;
long count;
opposingmovement_vehicles->get_Count(&count);
count = opposingmovement_vehicles.Count
$count = $opposingmovement_vehicles.Count

this[]

ISIAPIOpposingmovement_vehicle this[] { get; }

Type ISIAPIOpposingmovement_vehicle

Code samples
var this[] = opposingmovement_vehicles.this[];
CComPtr<ISIAPIOpposingmovement_vehicle> this[];
opposingmovement_vehicles->get_this[](&this[]);
this[] = opposingmovement_vehicles.this[]
$this[] = $opposingmovement_vehicles.this[]

this[]

ISIAPIOpposingmovement_vehicle this[] { get; }

Type ISIAPIOpposingmovement_vehicle

Code samples
var this[] = opposingmovement_vehicles.this[];
CComPtr<ISIAPIOpposingmovement_vehicle> this[];
opposingmovement_vehicles->get_this[](&this[]);
this[] = opposingmovement_vehicles.this[]
$this[] = $opposingmovement_vehicles.this[]

Methods

OpposingmovementVehicleExists(int, int)

bool OpposingmovementVehicleExists(int opposing_veh_origin, int opposing_veh_destination)

Parameters

Name Type Description
opposing_veh_origin int
opposing_veh_destination int

Returns bool

Code samples
bool result = opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0);
VARIANT_BOOL result;
opposingmovement_vehicles->OpposingmovementVehicleExists(0, 0, &result);
result = opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0)
$result = $opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0)