Skip to content

ISIAPIMovement_vehicle_od_mcs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 5C5CE4B6-7865-41CA-A40F-D77074101350

Declaration

[Guid("5C5CE4B6-7865-41CA-A40F-D77074101350")]
public interface ISIAPIMovement_vehicle_od_mcs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Vehicle Movement by Movement Class.

ISIAPIMovement_vehicle_od_mc this[] { get; }

Type ISIAPIMovement_vehicle_od_mc - Return a Vehicle Movement by Movement Class if it exists in the data storage; otherwise, null/Nothing.

Code samples
var this[] = movement_vehicle_od_mcs.this[];
Dim this[] As ISIAPIMovement_vehicle_od_mc = movement_vehicle_od_mcs.this[]
this[] = movement_vehicle_od_mcs.this[]
$this[] = $movement_vehicle_od_mcs.this[]

Methods

MovementClassExists(int)

Get a value indicating whether a Vehicle Movement by Movement Class exists in the data storage.

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int One of: - 1 - Light Vehicles - 2 - Heavy Vehicles - 3 - Buses - 4 - Bicycles - 5 - Large Trucks - 6 - Trams - 7 - User Class 1 - 8 - User Class 2 - 9 - User Class 3 - 10 - User Class 4 - 11 - User Class 5 - 12 - User Class 6

Returns bool - true if it exists in the data storage; otherwise, false

Code samples
bool result = movement_vehicle_od_mcs.MovementClassExists(0);
Dim result As Boolean = movement_vehicle_od_mcs.MovementClassExists(0)
result = movement_vehicle_od_mcs.MovementClassExists(0)
$result = $movement_vehicle_od_mcs.MovementClassExists(0)