Skip to content

ISIAPIOutputLaneODMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: F67F1946-961E-4B39-83AE-E73C40036855

Declaration

[Guid("F67F1946-961E-4B39-83AE-E73C40036855")]
public interface ISIAPIOutputLaneODMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneODMC this[] { get; }

Type ISIAPIOutputLaneODMC

Code samples
var this[] = outputLaneODMCs.this[];
Dim this[] As ISIAPIOutputLaneODMC = outputLaneODMCs.this[]
this[] = outputLaneODMCs.this[]
$this[] = $outputLaneODMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

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