Skip to content

MovementClassFuelEmissions

Type ISIAPIMovementClassFuelEmissions · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 49B3C935-B47C-49D4-B0DA-15BF3F90C0B3

Declaration

[Guid("49B3C935-B47C-49D4-B0DA-15BF3F90C0B3")]
public interface ISIAPIMovementClassFuelEmissions

Members

Properties

Property Type Summary
Count int
this[] ISIAPIMovementClassFuelEmission Get a Movement Class Fuel Emission. Return a Movement Class Fuel Emission if it exists in the data storage; otherwise, null/Nothing.

Methods

Method Returns Summary
Exists(int) bool Get a value indicating whether a Movement Class Fuel Emission exists in the data storage.

Properties

Count

int Count { get; }

Type int

Code samples
int count = movementClassFuelEmissions.Count;
long count;
movementClassFuelEmissions->get_Count(&count);
count = movementClassFuelEmissions.Count
$count = $movementClassFuelEmissions.Count

this[]

Get a Movement Class Fuel Emission.
Return a Movement Class Fuel Emission if it exists in the data storage; otherwise, null/Nothing.

ISIAPIMovementClassFuelEmission this[] { get; }

Type ISIAPIMovementClassFuelEmission

Code samples
var this[] = movementClassFuelEmissions.this[];
CComPtr<ISIAPIMovementClassFuelEmission> this[];
movementClassFuelEmissions->get_this[](&this[]);
this[] = movementClassFuelEmissions.this[]
$this[] = $movementClassFuelEmissions.this[]

Methods

Exists(int)

Get a value indicating whether a Movement Class Fuel Emission exists in the data storage.

bool Exists(int emissionClass)

Parameters

Name Type Description
emissionClass int One of: - 1 - Fuel - 2 - CO - 3 - HC - 4 - NOx

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

Code samples
bool result = movementClassFuelEmissions.Exists(0);
VARIANT_BOOL result;
movementClassFuelEmissions->Exists(0, &result);
result = movementClassFuelEmissions.Exists(0)
$result = $movementClassFuelEmissions.Exists(0)