Skip to content

ISIAPILaneMovements Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 1C23F111-F832-4E95-8B43-70D3492F8DDF

Declaration

[Guid("1C23F111-F832-4E95-8B43-70D3492F8DDF")]
public interface ISIAPILaneMovements

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPILaneMovement this[] { get; }

Type ISIAPILaneMovement

Code samples
var this[] = laneMovements.this[];
Dim this[] As ISIAPILaneMovement = laneMovements.this[]
this[] = laneMovements.this[]
$this[] = $laneMovements.this[]

Methods

LaneMovementExists(int, int)

bool LaneMovementExists(int leg, int laneno)

Parameters

Name Type Description
leg int
laneno int

Returns bool

Code samples
bool result = laneMovements.LaneMovementExists(0, 0);
Dim result As Boolean = laneMovements.LaneMovementExists(0, 0)
result = laneMovements.LaneMovementExists(0, 0)
$result = $laneMovements.LaneMovementExists(0, 0)