Skip to content

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

Get an instance

// Navigate to the ISIAPIOpposingmovement_vehicles you need via the ISIAPI tree.
// See ISIAPI for the activation root.
var opposingmovement_vehicles = /* ... */;
' Navigate to the ISIAPIOpposingmovement_vehicles you need via the ISIAPI tree.
' See ISIAPI for the activation root.
Dim opposingmovement_vehicles As ISIAPIOpposingmovement_vehicles = Nothing
# Navigate to the ISIAPIOpposingmovement_vehicles you need via the ISIAPI tree.
# See ISIAPI for the activation root.
opposingmovement_vehicles = ...
# Navigate to the ISIAPIOpposingmovement_vehicles you need via the ISIAPI tree.
# See ISIAPI for the activation root.
$opposingmovement_vehicles = $null

Properties

Count

int Count { get; }

Type int

Code samples
int count = opposingmovement_vehicles.Count;
Dim count As Integer = opposingmovement_vehicles.Count
count = opposingmovement_vehicles.Count
$count = $opposingmovement_vehicles.Count

this[]

ISIAPIOpposingmovement_vehicle this[] { get; }

Type ISIAPIOpposingmovement_vehicle

Code samples
var this[] = opposingmovement_vehicles.this[];
Dim this[] As ISIAPIOpposingmovement_vehicle = opposingmovement_vehicles.this[]
this[] = opposingmovement_vehicles.this[]
$this[] = $opposingmovement_vehicles.this[]

this[]

ISIAPIOpposingmovement_vehicle this[] { get; }

Type ISIAPIOpposingmovement_vehicle

Code samples
var this[] = opposingmovement_vehicles.this[];
Dim this[] As ISIAPIOpposingmovement_vehicle = opposingmovement_vehicles.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);
Dim result As Boolean = opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0)
result = opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0)
$result = $opposingmovement_vehicles.OpposingmovementVehicleExists(0, 0)