Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

Code samples
int count = siteVolumeMovVehODMCs.Count;
Dim count As Integer = siteVolumeMovVehODMCs.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[];
Dim this[] As ISIAPISiteVolumeMovVehODMC = siteVolumeMovVehODMCs.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);
Dim result As Boolean = siteVolumeMovVehODMCs.MovementClassExists(0)
result = siteVolumeMovVehODMCs.MovementClassExists(0)
$result = $siteVolumeMovVehODMCs.MovementClassExists(0)