Skip to content

ISIAPILaneSegmentMCs Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: AB521E7C-9CD1-43E3-8EE9-93B61DD64661

Declaration

[Guid("AB521E7C-9CD1-43E3-8EE9-93B61DD64661")]
public interface ISIAPILaneSegmentMCs

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPILaneSegmentMC this[] { get; }

Type ISIAPILaneSegmentMC

Code samples
var this[] = laneSegmentMCs.this[];
Dim this[] As ISIAPILaneSegmentMC = laneSegmentMCs.this[]
this[] = laneSegmentMCs.this[]
$this[] = $laneSegmentMCs.this[]