Skip to content

SiteVolumeMovVehODs

Type ISIAPISiteVolumeMovVehODs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID E1F108F6-7251-4DD7-A1F5-640AB3F13D00

Declaration

[Guid("E1F108F6-7251-4DD7-A1F5-640AB3F13D00")]
public interface ISIAPISiteVolumeMovVehODs

Members

Properties

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

Methods

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

Properties

Count

int Count { get; }

Type int

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

this[]

Get a Site Volume Bin Vehicle Movement.

ISIAPISiteVolumeMovVehOD this[] { get; }

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

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

Methods

MovementExists(int, int)

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

bool MovementExists(int origin, int destination)

Parameters

Name Type Description
origin int One of: - 0 - South - 1 - South East - 2 - East - 3 - North East - 4 - North - 5 - North West - 6 - West - 7 - South West
destination int One of: - 0 - South - 1 - South East - 2 - East - 3 - North East - 4 - North - 5 - North West - 6 - West - 7 - South West

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

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