Skip to content

OutputPhases

Type ISIAPIOutputPhases · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 1A268BF1-6A1A-4DD9-9F6B-0435C9171411

Declaration

[Guid("1A268BF1-6A1A-4DD9-9F6B-0435C9171411")]
public interface ISIAPIOutputPhases

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputPhase

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputPhase this[] { get; }

Type ISIAPIOutputPhase

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