Skip to content

ISIAPIOutputLegPersons Interface

Namespace: SIDRASolutions.SI.API
Assembly: SIDRASolutions.SI.API.dll COM CLSID: D8B3A441-FD8F-4673-9193-9383735E7B75

Declaration

[Guid("D8B3A441-FD8F-4673-9193-9383735E7B75")]
public interface ISIAPIOutputLegPersons

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLegPerson this[] { get; }

Type ISIAPIOutputLegPerson

Code samples
var this[] = outputLegPersons.this[];
Dim this[] As ISIAPIOutputLegPerson = outputLegPersons.this[]
this[] = outputLegPersons.this[]
$this[] = $outputLegPersons.this[]

Methods

LegPersonExists(int)

bool LegPersonExists(int orientation)

Parameters

Name Type Description
orientation int

Returns bool

Code samples
bool result = outputLegPersons.LegPersonExists(0);
Dim result As Boolean = outputLegPersons.LegPersonExists(0)
result = outputLegPersons.LegPersonExists(0)
$result = $outputLegPersons.LegPersonExists(0)