Skip to content

ISIAPISiteVolumeMovPeds Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: B0B3CDDA-629B-4CE5-9E9D-4B7B4D2E778B

Declaration

[Guid("B0B3CDDA-629B-4CE5-9E9D-4B7B4D2E778B")]
public interface ISIAPISiteVolumeMovPeds

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Site Volume Bin Pedestrian Movement.

ISIAPISiteVolumeMovPed this[] { get; }

Type ISIAPISiteVolumeMovPed - Return a Site Volume Bin Pedestrian Movement if it exists in the data storage; otherwise, null/Nothing.

Code samples
var this[] = siteVolumeMovPeds.this[];
Dim this[] As ISIAPISiteVolumeMovPed = siteVolumeMovPeds.this[]
this[] = siteVolumeMovPeds.this[]
$this[] = $siteVolumeMovPeds.this[]

Methods

MovementExists(int, int, int)

Get a value indicating whether a Site Volume Bin Pedestrian Movement 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 = siteVolumeMovPeds.MovementExists(0, 0, 0);
Dim result As Boolean = siteVolumeMovPeds.MovementExists(0, 0, 0)
result = siteVolumeMovPeds.MovementExists(0, 0, 0)
$result = $siteVolumeMovPeds.MovementExists(0, 0, 0)