Skip to content

ISIAPIOutputMovementVehicleODMC_GreenPeriods Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: C1798ED6-DD63-490E-8989-CF99E112BF9E

Declaration

[Guid("C1798ED6-DD63-490E-8989-CF99E112BF9E")]
public interface ISIAPIOutputMovementVehicleODMC_GreenPeriods

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

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

ISIAPIOutputMovementVehicleODMC_GreenPeriod this[] { get; }

Type ISIAPIOutputMovementVehicleODMC_GreenPeriod

Code samples
var this[] = outputMovementVehicleODMC_GreenPeriods.this[];
Dim this[] As ISIAPIOutputMovementVehicleODMC_GreenPeriod = outputMovementVehicleODMC_GreenPeriods.this[]
this[] = outputMovementVehicleODMC_GreenPeriods.this[]
$this[] = $outputMovementVehicleODMC_GreenPeriods.this[]

Methods

GreenPeriodExists(int)

Get a value indicating whether a Vehicle Movement Output Green Period Data Object 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 = outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0);
Dim result As Boolean = outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0)
result = outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0)
$result = $outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0)