Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputPhase this[] { get; }

Type ISIAPIOutputPhase

Code samples
var this[] = outputPhases.this[];
Dim this[] As ISIAPIOutputPhase = outputPhases.this[]
this[] = outputPhases.this[]
$this[] = $outputPhases.this[]