Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneExitMC this[] { get; }

Type ISIAPIOutputLaneExitMC

Code samples
var this[] = outputLaneExitMCs.this[];
Dim this[] As ISIAPIOutputLaneExitMC = outputLaneExitMCs.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);
Dim result As Boolean = outputLaneExitMCs.MovementClassExists(0)
result = outputLaneExitMCs.MovementClassExists(0)
$result = $outputLaneExitMCs.MovementClassExists(0)