Skip to content

ISIAPIOutputMovementPed_GreenPeriods Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: EDFEE1C1-0FFF-4F18-B226-1B441787E042

Declaration

[Guid("EDFEE1C1-0FFF-4F18-B226-1B441787E042")]
public interface ISIAPIOutputMovementPed_GreenPeriods

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

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

ISIAPIOutputMovementPed_GreenPeriod this[] { get; }

Type ISIAPIOutputMovementPed_GreenPeriod

Code samples
var this[] = outputMovementPed_GreenPeriods.this[];
Dim this[] As ISIAPIOutputMovementPed_GreenPeriod = outputMovementPed_GreenPeriods.this[]
this[] = outputMovementPed_GreenPeriods.this[]
$this[] = $outputMovementPed_GreenPeriods.this[]

Methods

GreenPeriodExists(int)

Get a value indicating whether a Pedestrian Movement Output Green Period exists in the data storage.

bool GreenPeriodExists(int greenperiod)

Parameters

Name Type Description
greenperiod int A one-based integer.

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

Code samples
bool result = outputMovementPed_GreenPeriods.GreenPeriodExists(0);
Dim result As Boolean = outputMovementPed_GreenPeriods.GreenPeriodExists(0)
result = outputMovementPed_GreenPeriods.GreenPeriodExists(0)
$result = $outputMovementPed_GreenPeriods.GreenPeriodExists(0)