Skip to content

ISIAPINetworkLegConnection Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 99F63CB1-320B-4AAD-A19D-2FFBF7C0DFAF

Declaration

[Guid("99F63CB1-320B-4AAD-A19D-2FFBF7C0DFAF")]
public interface ISIAPINetworkLegConnection

Get an instance

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

Properties

Site1_Name

string Site1_Name { get; }

Type string

Code samples
string site1_Name = networkLegConnection.Site1_Name;
Dim site1_Name As String = networkLegConnection.Site1_Name
site1__name = networkLegConnection.Site1_Name
$site1_Name = $networkLegConnection.Site1_Name

Leg1_Orientation

int Leg1_Orientation { get; }

Type int

Code samples
int leg1_Orientation = networkLegConnection.Leg1_Orientation;
Dim leg1_Orientation As Integer = networkLegConnection.Leg1_Orientation
leg1__orientation = networkLegConnection.Leg1_Orientation
$leg1_Orientation = $networkLegConnection.Leg1_Orientation

Site2_Name

string Site2_Name { get; }

Type string

Code samples
string site2_Name = networkLegConnection.Site2_Name;
Dim site2_Name As String = networkLegConnection.Site2_Name
site2__name = networkLegConnection.Site2_Name
$site2_Name = $networkLegConnection.Site2_Name

Leg2_Orientation

int Leg2_Orientation { get; }

Type int

Code samples
int leg2_Orientation = networkLegConnection.Leg2_Orientation;
Dim leg2_Orientation As Integer = networkLegConnection.Leg2_Orientation
leg2__orientation = networkLegConnection.Leg2_Orientation
$leg2_Orientation = $networkLegConnection.Leg2_Orientation

Network

ISIAPINetwork Network { get; }

Type ISIAPINetwork

Code samples
var network = networkLegConnection.Network;
Dim network As ISIAPINetwork = networkLegConnection.Network
network = networkLegConnection.Network
$network = $networkLegConnection.Network

NetworkSite1

ISIAPINetworkSite NetworkSite1 { get; }

Type ISIAPINetworkSite

Code samples
var networkSite1 = networkLegConnection.NetworkSite1;
Dim networkSite1 As ISIAPINetworkSite = networkLegConnection.NetworkSite1
network_site1 = networkLegConnection.NetworkSite1
$networkSite1 = $networkLegConnection.NetworkSite1

NetworkSite2

ISIAPINetworkSite NetworkSite2 { get; }

Type ISIAPINetworkSite

Code samples
var networkSite2 = networkLegConnection.NetworkSite2;
Dim networkSite2 As ISIAPINetworkSite = networkLegConnection.NetworkSite2
network_site2 = networkLegConnection.NetworkSite2
$networkSite2 = $networkLegConnection.NetworkSite2

ConnectionType

int ConnectionType { get; set; }

Type int

Code samples
int connectionType = networkLegConnection.ConnectionType;
networkLegConnection.ConnectionType = 0;
Dim connectionType As Integer = networkLegConnection.ConnectionType
networkLegConnection.ConnectionType = 0
connection_type = networkLegConnection.ConnectionType
networkLegConnection.ConnectionType = 0
$connectionType = $networkLegConnection.ConnectionType
$networkLegConnection.ConnectionType = 0

ZIndex

int ZIndex { get; set; }

Type int

Code samples
int zIndex = networkLegConnection.ZIndex;
networkLegConnection.ZIndex = 0;
Dim zIndex As Integer = networkLegConnection.ZIndex
networkLegConnection.ZIndex = 0
z_index = networkLegConnection.ZIndex
networkLegConnection.ZIndex = 0
$zIndex = $networkLegConnection.ZIndex
$networkLegConnection.ZIndex = 0