Skip to content

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

Get an instance

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

Properties

Origin

int Origin { get; }

Type int

Code samples
int origin = laneMovement.Origin;
Dim origin As Integer = laneMovement.Origin
origin = laneMovement.Origin
$origin = $laneMovement.Origin

OriginLaneno

int OriginLaneno { get; }

Type int

Code samples
int originLaneno = laneMovement.OriginLaneno;
Dim originLaneno As Integer = laneMovement.OriginLaneno
origin_laneno = laneMovement.OriginLaneno
$originLaneno = $laneMovement.OriginLaneno

Destination

int Destination { get; }

Type int

Code samples
int destination = laneMovement.Destination;
Dim destination As Integer = laneMovement.Destination
destination = laneMovement.Destination
$destination = $laneMovement.Destination

DestinationLaneno

int DestinationLaneno { get; }

Type int

Code samples
int destinationLaneno = laneMovement.DestinationLaneno;
Dim destinationLaneno As Integer = laneMovement.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;
Dim lane_blockage_calib_factor As Single = 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
$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;
Dim laneMovementMCs As ISIAPILaneMovementMCs = laneMovement.LaneMovementMCs
lane_movement_m_cs = laneMovement.LaneMovementMCs
$laneMovementMCs = $laneMovement.LaneMovementMCs