Skip to content

OutputLaneMCs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLaneMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLaneMC this[] { get; }

Type ISIAPIOutputLaneMC

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