Skip to content

NetworkCCGPhases

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPINetworkCCGPhase
this[] ISIAPINetworkCCGPhase

Methods

Method Returns Summary
PhaseExists(string) bool

Properties

Count

int Count { get; }

Type int

Code samples
int count = networkCCGPhases.Count;
long count;
networkCCGPhases->get_Count(&count);
count = networkCCGPhases.Count
$count = $networkCCGPhases.Count

this[]

ISIAPINetworkCCGPhase this[] { get; }

Type ISIAPINetworkCCGPhase

Code samples
var this[] = networkCCGPhases.this[];
CComPtr<ISIAPINetworkCCGPhase> this[];
networkCCGPhases->get_this[](&this[]);
this[] = networkCCGPhases.this[]
$this[] = $networkCCGPhases.this[]

this[]

ISIAPINetworkCCGPhase this[] { get; }

Type ISIAPINetworkCCGPhase

Code samples
var this[] = networkCCGPhases.this[];
CComPtr<ISIAPINetworkCCGPhase> this[];
networkCCGPhases->get_this[](&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");
VARIANT_BOOL result;
networkCCGPhases->PhaseExists(CComBSTR(L"Example"), &result);
result = networkCCGPhases.PhaseExists(r"Example")
$result = $networkCCGPhases.PhaseExists("Example")