Skip to content

OutputMovementPeds

Type ISIAPIOutputMovementPeds · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID CF0394B0-4C77-480C-86EF-510921AE1905

Declaration

[Guid("CF0394B0-4C77-480C-86EF-510921AE1905")]
public interface ISIAPIOutputMovementPeds

Members

Properties

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

Methods

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

Properties

Count

int Count { get; }

Type int

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

this[]

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

ISIAPIOutputMovementPed this[] { get; }

Type ISIAPIOutputMovementPed

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

Methods

MovementExists(int, int, int)

Get a value indicating whether a Pedestrian Movement Output Data Object exists in the data storage.

bool MovementExists(int type, int origin, int stage)

Parameters

Name Type Description
type int One of: - 1 - Full Crossing - 2 - Slip Lane - 3 - Staged - 4 - Diagonal
origin int One of: - 0 - South - 1 - South East - 2 - East - 3 - North East - 4 - North - 5 - North West - 6 - West - 7 - South West
stage int One of: - 1 - Stage 1 (Approach-side crossing) - 2 - Stage 2 (Exit-side crossing)

Returns bool - true if it exists in the data storage; otherwise, false

Code samples
bool result = outputMovementPeds.MovementExists(0, 0, 0);
VARIANT_BOOL result;
outputMovementPeds->MovementExists(0, 0, 0, &result);
result = outputMovementPeds.MovementExists(0, 0, 0)
$result = $outputMovementPeds.MovementExists(0, 0, 0)