Skip to content

OutputLaneODMCs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLaneODMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneODMC this[] { get; }

Type ISIAPIOutputLaneODMC

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