Skip to content

OutputMovementPersonODs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputMovementPersonOD Get a Movement Output Person Data Object. Return a Movement Output Person 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 Movement Output Person Data Object exists in the data storage.

Properties

Count

int Count { get; }

Type int

Code samples
int count = outputMovementPersonODs.Count;
long count;
outputMovementPersonODs->get_Count(&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[];
CComPtr<ISIAPIOutputMovementPersonOD> this[];
outputMovementPersonODs->get_this[](&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);
VARIANT_BOOL result;
outputMovementPersonODs->MovementExists(0, 0, &result);
result = outputMovementPersonODs.MovementExists(0, 0)
$result = $outputMovementPersonODs.MovementExists(0, 0)