Skip to content

ISIAPIOutputLaneMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 9461C66C-2AEE-4937-AE3F-B70B1A2C0AC4

Declaration

[Guid("9461C66C-2AEE-4937-AE3F-B70B1A2C0AC4")]
public interface ISIAPIOutputLaneMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneMC this[] { get; }

Type ISIAPIOutputLaneMC

Code samples
var this[] = outputLaneMCs.this[];
Dim this[] As ISIAPIOutputLaneMC = outputLaneMCs.this[]
this[] = outputLaneMCs.this[]
$this[] = $outputLaneMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

Code samples
bool result = outputLaneMCs.MovementClassExists(0);
Dim result As Boolean = outputLaneMCs.MovementClassExists(0)
result = outputLaneMCs.MovementClassExists(0)
$result = $outputLaneMCs.MovementClassExists(0)