Skip to content

OutputLanes

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLane

Methods

Method Returns Summary
LaneExists(int) bool

Properties

Count

int Count { get; }

Type int

Code samples
int count = outputLanes.Count;
long count;
outputLanes->get_Count(&count);
count = outputLanes.Count
$count = $outputLanes.Count

this[]

ISIAPIOutputLane this[] { get; }

Type ISIAPIOutputLane

Code samples
var this[] = outputLanes.this[];
CComPtr<ISIAPIOutputLane> this[];
outputLanes->get_this[](&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);
VARIANT_BOOL result;
outputLanes->LaneExists(0, &result);
result = outputLanes.LaneExists(0)
$result = $outputLanes.LaneExists(0)