Skip to content

LaneMovement

Type ISIAPILaneMovement · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 8E0CDB51-CDFA-4ACB-8D95-72DD0FA3ACB3

Declaration

[Guid("8E0CDB51-CDFA-4ACB-8D95-72DD0FA3ACB3")]
public interface ISIAPILaneMovement

Members

Properties

Origin

int Origin { get; }

Type int

Code samples
int origin = laneMovement.Origin;
long origin;
laneMovement->get_Origin(&origin);
origin = laneMovement.Origin
$origin = $laneMovement.Origin

OriginLaneno

int OriginLaneno { get; }

Type int

Code samples
int originLaneno = laneMovement.OriginLaneno;
long originLaneno;
laneMovement->get_OriginLaneno(&originLaneno);
origin_laneno = laneMovement.OriginLaneno
$originLaneno = $laneMovement.OriginLaneno

Destination

int Destination { get; }

Type int

Code samples
int destination = laneMovement.Destination;
long destination;
laneMovement->get_Destination(&destination);
destination = laneMovement.Destination
$destination = $laneMovement.Destination

DestinationLaneno

int DestinationLaneno { get; }

Type int

Code samples
int destinationLaneno = laneMovement.DestinationLaneno;
long destinationLaneno;
laneMovement->get_DestinationLaneno(&destinationLaneno);
destination_laneno = laneMovement.DestinationLaneno
$destinationLaneno = $laneMovement.DestinationLaneno

Lane_blockage_calib_factor

float Lane_blockage_calib_factor { get; set; }

Type float

Code samples
float lane_blockage_calib_factor = laneMovement.Lane_blockage_calib_factor;
laneMovement.Lane_blockage_calib_factor = 0.0;
double lane_blockage_calib_factor;
laneMovement->get_Lane_blockage_calib_factor(&lane_blockage_calib_factor);
laneMovement->put_Lane_blockage_calib_factor(0.0);
lane_blockage_calib_factor = laneMovement.Lane_blockage_calib_factor
laneMovement.Lane_blockage_calib_factor = 0.0
$lane_blockage_calib_factor = $laneMovement.Lane_blockage_calib_factor
$laneMovement.Lane_blockage_calib_factor = 0.0

LaneMovementMCs

ISIAPILaneMovementMCs LaneMovementMCs { get; }

Type ISIAPILaneMovementMCs

Code samples
var laneMovementMCs = laneMovement.LaneMovementMCs;
CComPtr<ISIAPILaneMovementMCs> laneMovementMCs;
laneMovement->get_LaneMovementMCs(&laneMovementMCs);
lane_movement_m_cs = laneMovement.LaneMovementMCs
$laneMovementMCs = $laneMovement.LaneMovementMCs