Skip to content

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

Get an instance

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

Properties

Count

int Count { get; }

Type int

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

this[]

ISIAPIOutputMovementPersonODMC this[] { get; }

Type ISIAPIOutputMovementPersonODMC

Code samples
var this[] = outputMovementPersonODMCs.this[];
Dim this[] As ISIAPIOutputMovementPersonODMC = outputMovementPersonODMCs.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);
Dim result As Boolean = outputMovementPersonODMCs.MovementClassExists(0)
result = outputMovementPersonODMCs.MovementClassExists(0)
$result = $outputMovementPersonODMCs.MovementClassExists(0)