Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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