Skip to content

OutputLaneODs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLaneOD

Methods

Method Returns Summary
LaneODExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneOD this[] { get; }

Type ISIAPIOutputLaneOD

Code samples
var this[] = outputLaneODs.this[];
CComPtr<ISIAPIOutputLaneOD> this[];
outputLaneODs->get_this[](&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);
VARIANT_BOOL result;
outputLaneODs->LaneODExists(0, &result);
result = outputLaneODs.LaneODExists(0)
$result = $outputLaneODs.LaneODExists(0)