Skip to content

ISIAPINetworkCCGPhases Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: AE75B0D9-D7CB-4A0B-9550-03C659B6EC7A

Declaration

[Guid("AE75B0D9-D7CB-4A0B-9550-03C659B6EC7A")]
public interface ISIAPINetworkCCGPhases

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPINetworkCCGPhase this[] { get; }

Type ISIAPINetworkCCGPhase

Code samples
var this[] = networkCCGPhases.this[];
Dim this[] As ISIAPINetworkCCGPhase = networkCCGPhases.this[]
this[] = networkCCGPhases.this[]
$this[] = $networkCCGPhases.this[]

this[]

ISIAPINetworkCCGPhase this[] { get; }

Type ISIAPINetworkCCGPhase

Code samples
var this[] = networkCCGPhases.this[];
Dim this[] As ISIAPINetworkCCGPhase = networkCCGPhases.this[]
this[] = networkCCGPhases.this[]
$this[] = $networkCCGPhases.this[]

Methods

PhaseExists(string)

bool PhaseExists(string phasename)

Parameters

Name Type Description
phasename string

Returns bool

Code samples
bool result = networkCCGPhases.PhaseExists(@"Example");
Dim result As Boolean = networkCCGPhases.PhaseExists("Example")
result = networkCCGPhases.PhaseExists(r"Example")
$result = $networkCCGPhases.PhaseExists("Example")