Skip to content

ISIAPIOutputMovementPersonODs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: E2E5DA80-A3FB-48E7-9C63-EE2FEB4A5158

Declaration

[Guid("E2E5DA80-A3FB-48E7-9C63-EE2FEB4A5158")]
public interface ISIAPIOutputMovementPersonODs

Get an instance

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

Properties

Count

int Count { get; }

Type int

Code samples
int count = outputMovementPersonODs.Count;
Dim count As Integer = outputMovementPersonODs.Count
count = outputMovementPersonODs.Count
$count = $outputMovementPersonODs.Count

this[]

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

ISIAPIOutputMovementPersonOD this[] { get; }

Type ISIAPIOutputMovementPersonOD

Code samples
var this[] = outputMovementPersonODs.this[];
Dim this[] As ISIAPIOutputMovementPersonOD = outputMovementPersonODs.this[]
this[] = outputMovementPersonODs.this[]
$this[] = $outputMovementPersonODs.this[]

Methods

MovementExists(int, int)

Get a value indicating whether a Movement Output Person 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 = outputMovementPersonODs.MovementExists(0, 0);
Dim result As Boolean = outputMovementPersonODs.MovementExists(0, 0)
result = outputMovementPersonODs.MovementExists(0, 0)
$result = $outputMovementPersonODs.MovementExists(0, 0)