Skip to content

ISIAPIOutputGraphTuples Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: 0D958FB6-F029-4960-863C-E82DA56C88B3

Declaration

[Guid("0D958FB6-F029-4960-863C-E82DA56C88B3")]
public interface ISIAPIOutputGraphTuples

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputGraphTuple this[] { get; }

Type ISIAPIOutputGraphTuple

Code samples
var this[] = outputGraphTuples.this[];
Dim this[] As ISIAPIOutputGraphTuple = outputGraphTuples.this[]
this[] = outputGraphTuples.this[]
$this[] = $outputGraphTuples.this[]