Skip to content

OutputLegs

Type ISIAPIOutputLegs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID 139787D8-0DEB-4F4B-83A2-211673BC7273

Declaration

[Guid("139787D8-0DEB-4F4B-83A2-211673BC7273")]
public interface ISIAPIOutputLegs

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLeg

Methods

Method Returns Summary
LegExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLeg this[] { get; }

Type ISIAPIOutputLeg

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

Methods

LegExists(int)

bool LegExists(int orientation)

Parameters

Name Type Description
orientation int

Returns bool

Code samples
bool result = outputLegs.LegExists(0);
VARIANT_BOOL result;
outputLegs->LegExists(0, &result);
result = outputLegs.LegExists(0)
$result = $outputLegs.LegExists(0)