Skip to content

ISIAPIOutputPhaseMovTimingPaths Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: B2116A07-78CC-454E-9A19-75148C7ECD91

Declaration

[Guid("B2116A07-78CC-454E-9A19-75148C7ECD91")]
public interface ISIAPIOutputPhaseMovTimingPaths

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputPhaseMovTimingPath this[] { get; }

Type ISIAPIOutputPhaseMovTimingPath

Code samples
var this[] = outputPhaseMovTimingPaths.this[];
Dim this[] As ISIAPIOutputPhaseMovTimingPath = outputPhaseMovTimingPaths.this[]
this[] = outputPhaseMovTimingPaths.this[]
$this[] = $outputPhaseMovTimingPaths.this[]