Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

Code samples
int count = outputMovementVehicleODs.Count;
Dim count As Integer = outputMovementVehicleODs.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[];
Dim this[] As ISIAPIOutputMovementVehicleOD = outputMovementVehicleODs.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);
Dim result As Boolean = outputMovementVehicleODs.MovementExists(0, 0)
result = outputMovementVehicleODs.MovementExists(0, 0)
$result = $outputMovementVehicleODs.MovementExists(0, 0)