Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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