Skip to content

OutputGraphTuples

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputGraphTuple

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputGraphTuple this[] { get; }

Type ISIAPIOutputGraphTuple

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