Skip to content

OutputMovementVehicleODs

Type ISIAPIOutputMovementVehicleODs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 05D1C1BE-A4EF-4BBD-BC20-530374B6A6F2

Declaration

[Guid("05D1C1BE-A4EF-4BBD-BC20-530374B6A6F2")]
public interface ISIAPIOutputMovementVehicleODs

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputMovementVehicleOD Get a Vehicle Movement Output Data Object. Return a Vehicle Movement Output Data Object if it exists in the data storage; otherwise, null/Nothing.

Methods

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

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Vehicle Movement Output Data Object.
Return a Vehicle Movement Output Data Object if it exists in the data storage; otherwise, null/Nothing.

ISIAPIOutputMovementVehicleOD this[] { get; }

Type ISIAPIOutputMovementVehicleOD

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

Methods

MovementExists(int, int)

Get a value indicating whether a Vehicle Movement Output Data Object 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 = outputMovementVehicleODs.MovementExists(0, 0);
VARIANT_BOOL result;
outputMovementVehicleODs->MovementExists(0, 0, &result);
result = outputMovementVehicleODs.MovementExists(0, 0)
$result = $outputMovementVehicleODs.MovementExists(0, 0)