Skip to content

Movement_vehicle_od_mcs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIMovement_vehicle_od_mc Get a Vehicle Movement by Movement Class.

Methods

Method Returns Summary
MovementClassExists(int) bool Get a value indicating whether a Vehicle Movement by Movement Class exists in the data storage.

Properties

Count

int Count { get; }

Type int

Code samples
int count = movement_vehicle_od_mcs.Count;
long count;
movement_vehicle_od_mcs->get_Count(&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[];
CComPtr<ISIAPIMovement_vehicle_od_mc> this[];
movement_vehicle_od_mcs->get_this[](&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);
VARIANT_BOOL result;
movement_vehicle_od_mcs->MovementClassExists(0, &result);
result = movement_vehicle_od_mcs.MovementClassExists(0)
$result = $movement_vehicle_od_mcs.MovementClassExists(0)