Skip to content

OutputNetworkVehicleMCs

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputNetworkVehicleMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputNetworkVehicleMC this[] { get; }

Type ISIAPIOutputNetworkVehicleMC

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