Skip to content

Movement_vehicle_ods

Type ISIAPIMovement_vehicle_ods · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 12E07B7C-149F-4A13-8545-C0E2628C4BCA

Declaration

[Guid("12E07B7C-149F-4A13-8545-C0E2628C4BCA")]
public interface ISIAPIMovement_vehicle_ods

Members

Properties

Property Type Summary
Count int
this[] ISIAPIMovement_vehicle_od Get a Vehicle Movement.

Methods

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

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Vehicle Movement.

ISIAPIMovement_vehicle_od this[] { get; }

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

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

Methods

MovementExists(int, int)

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

bool MovementExists(int origin, int destination)

Parameters

Name Type Description
origin int One of: - 0 - South - 1 - South East - 2 - East - 3 - North East - 4 - North - 5 - North West - 6 - West - 7 - South West
destination int One of: - 0 - South - 1 - South East - 2 - East - 3 - North East - 4 - North - 5 - North West - 6 - West - 7 - South West

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

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