Skip to content

ISIAPIOutputLanes Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 388178C1-B04E-404E-90F6-4C5143B3F818

Declaration

[Guid("388178C1-B04E-404E-90F6-4C5143B3F818")]
public interface ISIAPIOutputLanes

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLane this[] { get; }

Type ISIAPIOutputLane

Code samples
var this[] = outputLanes.this[];
Dim this[] As ISIAPIOutputLane = outputLanes.this[]
this[] = outputLanes.this[]
$this[] = $outputLanes.this[]

Methods

LaneExists(int)

bool LaneExists(int laneno)

Parameters

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

Returns bool

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