Skip to content

OutputMovementPersonODMCs

Type ISIAPIOutputMovementPersonODMCs · Interface
Namespace SIDRASolutions.SI.API
Assembly SIDRASolutions.SI.API.dll
COM CLSID FDB5EC6B-6CD7-4627-B092-0D1AA64B3A0F

Declaration

[Guid("FDB5EC6B-6CD7-4627-B092-0D1AA64B3A0F")]
public interface ISIAPIOutputMovementPersonODMCs

Members

Properties

Property Type Summary
Count int
this[] ISIAPIOutputMovementPersonODMC

Methods

Method Returns Summary
MovementClassExists(int) bool

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputMovementPersonODMC this[] { get; }

Type ISIAPIOutputMovementPersonODMC

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

Methods

MovementClassExists(int)

bool MovementClassExists(int mcClass)

Parameters

Name Type Description
mcClass int

Returns bool

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