Skip to content

ISIAPIOutputLaneExits Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 3090F809-68DB-4B88-88A5-2159F20BC602

Declaration

[Guid("3090F809-68DB-4B88-88A5-2159F20BC602")]
public interface ISIAPIOutputLaneExits

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneExit this[] { get; }

Type ISIAPIOutputLaneExit

Code samples
var this[] = outputLaneExits.this[];
Dim this[] As ISIAPIOutputLaneExit = outputLaneExits.this[]
this[] = outputLaneExits.this[]
$this[] = $outputLaneExits.this[]

Methods

LaneExists(int)

bool LaneExists(int laneno)

Parameters

Name Type Description
laneno int Exit Lane Number, a one-based integer, counts Exit Lanes only from left to right looking in the direction of departure.

Returns bool

Code samples
bool result = outputLaneExits.LaneExists(0);
Dim result As Boolean = outputLaneExits.LaneExists(0)
result = outputLaneExits.LaneExists(0)
$result = $outputLaneExits.LaneExists(0)