Skip to content

ISIAPIIslands Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 396351EE-ED25-48E9-BBE5-BD6D190589BC

Declaration

[Guid("396351EE-ED25-48E9-BBE5-BD6D190589BC")]
public interface ISIAPIIslands

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIIsland this[] { get; }

Type ISIAPIIsland

Code samples
var this[] = islands.this[];
Dim this[] As ISIAPIIsland = islands.this[]
this[] = islands.this[]
$this[] = $islands.this[]

Methods

IslandExists(int)

bool IslandExists(int island_no)

Parameters

Name Type Description
island_no int Island Number, a one-based integer, counts Islands only from left to right looking to the centre of the Intersection.

Returns bool

Code samples
bool result = islands.IslandExists(0);
Dim result As Boolean = islands.IslandExists(0)
result = islands.IslandExists(0)
$result = $islands.IslandExists(0)