Skip to content

ISIAPIOutputRouteMovementBasedVehicleMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: FE29E9C8-8D2B-4691-BBA2-0A0F15FFC4AA

Declaration

[Guid("FE29E9C8-8D2B-4691-BBA2-0A0F15FFC4AA")]
public interface ISIAPIOutputRouteMovementBasedVehicleMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputRouteMovementBasedVehicleMC this[] { get; }

Type ISIAPIOutputRouteMovementBasedVehicleMC

Code samples
var this[] = outputRouteMovementBasedVehicleMCs.this[];
Dim this[] As ISIAPIOutputRouteMovementBasedVehicleMC = outputRouteMovementBasedVehicleMCs.this[]
this[] = outputRouteMovementBasedVehicleMCs.this[]
$this[] = $outputRouteMovementBasedVehicleMCs.this[]

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

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