Skip to content

SiteVolumeMovVehODMCs

Type ISIAPISiteVolumeMovVehODMCs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 62F2391B-7034-4853-A590-E49ECBABF4EF

Declaration

[Guid("62F2391B-7034-4853-A590-E49ECBABF4EF")]
public interface ISIAPISiteVolumeMovVehODMCs

Members

Properties

Property Type Summary
Count int
this[] ISIAPISiteVolumeMovVehODMC Get a Site Volume Bin Vehicle Movement by Movement Class.

Methods

Method Returns Summary
MovementClassExists(int) bool Get a value indicating whether a Site Volume Bin Vehicle Movement by Movement Class exists in the data storage.

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Site Volume Bin Vehicle Movement by Movement Class.

ISIAPISiteVolumeMovVehODMC this[] { get; }

Type ISIAPISiteVolumeMovVehODMC - Return a Site Volume Bin Vehicle Movement by Movement Class if it exists in the data storage; otherwise, null/Nothing.

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

Methods

MovementClassExists(int)

Get a value indicating whether a Site Volume Bin Vehicle Movement by Movement Class exists in the data storage.

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int One of: - 1 - Light Vehicles - 2 - Heavy Vehicles - 3 - Buses - 4 - Bicycles - 5 - Large Trucks - 6 - Trams - 7 - User Class 1 - 8 - User Class 2 - 9 - User Class 3 - 10 - User Class 4 - 11 - User Class 5 - 12 - User Class 6

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

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