AVEVA OMI Software Developer Kit



The specified 1-based element index (the index of the first element in array is 1)
GetArrayElement Method
If the class is holding an array, this returns an element of the specified 1-based index from the array.
Syntax
'Declaration
 
Public MustOverride Function GetArrayElement( _
   ByVal elementIndex As Integer _
) As Object
'Usage
 
Dim instance As Value
Dim elementIndex As Integer
Dim value As Object
 
value = instance.GetArrayElement(elementIndex)
public abstract object GetArrayElement( 
   int elementIndex
)
public:
abstract Object^ GetArrayElement( 
   int elementIndex
) 

Parameters

elementIndex
The specified 1-based element index (the index of the first element in array is 1)

Return Value

The element value
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also