Skip to content

OutputLaneExitMCs

Type ISIAPIOutputLaneExitMCs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 1D185490-011A-46F0-8C78-3FCC3F5F10C4

Declaration

[Guid("1D185490-011A-46F0-8C78-3FCC3F5F10C4")]
public interface ISIAPIOutputLaneExitMCs

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLaneExitMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneExitMC this[] { get; }

Type ISIAPIOutputLaneExitMC

Code samples
var this[] = outputLaneExitMCs.this[];
CComPtr<ISIAPIOutputLaneExitMC> this[];
outputLaneExitMCs->get_this[](&this[]);
this[] = outputLaneExitMCs.this[]
$this[] = $outputLaneExitMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

Code samples
bool result = outputLaneExitMCs.MovementClassExists(0);
VARIANT_BOOL result;
outputLaneExitMCs->MovementClassExists(0, &result);
result = outputLaneExitMCs.MovementClassExists(0)
$result = $outputLaneExitMCs.MovementClassExists(0)