Skip to content

ISIAPILaneApproachMovementMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 43649661-4D0E-4F64-BDCE-98C45BFD4E51

Declaration

[Guid("43649661-4D0E-4F64-BDCE-98C45BFD4E51")]
public interface ISIAPILaneApproachMovementMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPILaneApproachMovementMC this[] { get; }

Type ISIAPILaneApproachMovementMC

Code samples
var this[] = laneApproachMovementMCs.this[];
Dim this[] As ISIAPILaneApproachMovementMC = laneApproachMovementMCs.this[]
this[] = laneApproachMovementMCs.this[]
$this[] = $laneApproachMovementMCs.this[]