Skip to content

OutputMovementVehicleODMC_GreenPeriods

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputMovementVehicleODMC_GreenPeriod 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.

Methods

Method Returns Summary
GreenPeriodExists(int) bool Get a value indicating whether a Vehicle Movement Output Green Period Data Object exists in the data storage.

Properties

Count

int Count { get; }

Type int

Code samples
int count = outputMovementVehicleODMC_GreenPeriods.Count;
long count;
outputMovementVehicleODMC_GreenPeriods->get_Count(&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[];
CComPtr<ISIAPIOutputMovementVehicleODMC_GreenPeriod> this[];
outputMovementVehicleODMC_GreenPeriods->get_this[](&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);
VARIANT_BOOL result;
outputMovementVehicleODMC_GreenPeriods->GreenPeriodExists(0, &result);
result = outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0)
$result = $outputMovementVehicleODMC_GreenPeriods.GreenPeriodExists(0)