Skip to content

OutputLaneExits

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLaneExit

Methods

Method Returns Summary
LaneExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneExit this[] { get; }

Type ISIAPIOutputLaneExit

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