Skip to content

OutputLegPersons

Type 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

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputLegPerson

Methods

Method Returns Summary
LegPersonExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputLegPerson this[] { get; }

Type ISIAPIOutputLegPerson

Code samples
var this[] = outputLegPersons.this[];
CComPtr<ISIAPIOutputLegPerson> this[];
outputLegPersons->get_this[](&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);
VARIANT_BOOL result;
outputLegPersons->LegPersonExists(0, &result);
result = outputLegPersons.LegPersonExists(0)
$result = $outputLegPersons.LegPersonExists(0)