Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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