Skip to content

ISIAPIOutputLaneODs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 0B12CD6E-EBD8-46AB-B390-84BF1BD4215E

Declaration

[Guid("0B12CD6E-EBD8-46AB-B390-84BF1BD4215E")]
public interface ISIAPIOutputLaneODs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneOD this[] { get; }

Type ISIAPIOutputLaneOD

Code samples
var this[] = outputLaneODs.this[];
Dim this[] As ISIAPIOutputLaneOD = outputLaneODs.this[]
this[] = outputLaneODs.this[]
$this[] = $outputLaneODs.this[]

Methods

LaneODExists(int)

bool LaneODExists(int destination)

Parameters

Name Type Description
destination int

Returns bool

Code samples
bool result = outputLaneODs.LaneODExists(0);
Dim result As Boolean = outputLaneODs.LaneODExists(0)
result = outputLaneODs.LaneODExists(0)
$result = $outputLaneODs.LaneODExists(0)