Skip to content

ISIAPIOutputNetworkVehicleMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 1B71EC61-529F-4485-95B8-3CC409BAD0FF

Declaration

[Guid("1B71EC61-529F-4485-95B8-3CC409BAD0FF")]
public interface ISIAPIOutputNetworkVehicleMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputNetworkVehicleMC this[] { get; }

Type ISIAPIOutputNetworkVehicleMC

Code samples
var this[] = outputNetworkVehicleMCs.this[];
Dim this[] As ISIAPIOutputNetworkVehicleMC = outputNetworkVehicleMCs.this[]
this[] = outputNetworkVehicleMCs.this[]
$this[] = $outputNetworkVehicleMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

Code samples
bool result = outputNetworkVehicleMCs.MovementClassExists(0);
Dim result As Boolean = outputNetworkVehicleMCs.MovementClassExists(0)
result = outputNetworkVehicleMCs.MovementClassExists(0)
$result = $outputNetworkVehicleMCs.MovementClassExists(0)