Skip to content

OutputLegMCs

Type ISIAPIOutputLegMCs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 1CFD8D95-DE13-4B42-9505-BABD3657FF7D

Declaration

[Guid("1CFD8D95-DE13-4B42-9505-BABD3657FF7D")]
public interface ISIAPIOutputLegMCs

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLegMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLegMC this[] { get; }

Type ISIAPIOutputLegMC

Code samples
var this[] = outputLegMCs.this[];
CComPtr<ISIAPIOutputLegMC> this[];
outputLegMCs->get_this[](&this[]);
this[] = outputLegMCs.this[]
$this[] = $outputLegMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

Code samples
bool result = outputLegMCs.MovementClassExists(0);
VARIANT_BOOL result;
outputLegMCs->MovementClassExists(0, &result);
result = outputLegMCs.MovementClassExists(0)
$result = $outputLegMCs.MovementClassExists(0)