Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLegMC this[] { get; }

Type ISIAPIOutputLegMC

Code samples
var this[] = outputLegMCs.this[];
Dim this[] As ISIAPIOutputLegMC = outputLegMCs.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);
Dim result As Boolean = outputLegMCs.MovementClassExists(0)
result = outputLegMCs.MovementClassExists(0)
$result = $outputLegMCs.MovementClassExists(0)