Skip to content

LaneMovements

Type ISIAPILaneMovements · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 1C23F111-F832-4E95-8B43-70D3492F8DDF

Declaration

[Guid("1C23F111-F832-4E95-8B43-70D3492F8DDF")]
public interface ISIAPILaneMovements

Members

Properties

Property Type Summary
Count int
this[] ISIAPILaneMovement

Methods

Method Returns Summary
LaneMovementExists(int, int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPILaneMovement this[] { get; }

Type ISIAPILaneMovement

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

Methods

LaneMovementExists(int, int)

bool LaneMovementExists(int leg, int laneno)

Parameters

Name Type Description
leg int
laneno int

Returns bool

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