Skip to content

ISIAPILaneMovementMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 6645C118-C95E-4E91-BEEB-720B4A3F78AF

Declaration

[Guid("6645C118-C95E-4E91-BEEB-720B4A3F78AF")]
public interface ISIAPILaneMovementMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

Code samples
int count = laneMovementMCs.Count;
Dim count As Integer = laneMovementMCs.Count
count = laneMovementMCs.Count
$count = $laneMovementMCs.Count

this[]

ISIAPILaneMovementMC this[] { get; }

Type ISIAPILaneMovementMC

Code samples
var this[] = laneMovementMCs.this[];
Dim this[] As ISIAPILaneMovementMC = laneMovementMCs.this[]
this[] = laneMovementMCs.this[]
$this[] = $laneMovementMCs.this[]