Skip to content

ISIAPILaneApproachMovements Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 8DF96C87-43D0-4436-9BAB-1221FF7E1CFE

Declaration

[Guid("8DF96C87-43D0-4436-9BAB-1221FF7E1CFE")]
public interface ISIAPILaneApproachMovements

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPILaneApproachMovement this[] { get; }

Type ISIAPILaneApproachMovement

Code samples
var this[] = laneApproachMovements.this[];
Dim this[] As ISIAPILaneApproachMovement = laneApproachMovements.this[]
this[] = laneApproachMovements.this[]
$this[] = $laneApproachMovements.this[]