QuickOPC User's Guide and Reference
SetValue(GenericData,Int64) Method



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.DataTypeModel Namespace > SequenceData Class > SetValue Method : SetValue(GenericData,Int64) Method
The new value for the specified element.
A 64-bit integer that represents the position of the array element to set.
Sets a value to the element at the specified position in the one-dimensional array. The index is specified as a 64-bit integer.
Syntax
'Declaration
 
Public Overloads Sub SetValue( _
   ByVal genericData As GenericData, _
   ByVal index As Long _
) 
'Usage
 
Dim instance As SequenceData
Dim genericData As GenericData
Dim index As Long
 
instance.SetValue(genericData, index)
public void SetValue( 
   GenericData genericData,
   long index
)
public:
void SetValue( 
   GenericData^ genericData,
   int64 index
) 

Parameters

genericData
The new value for the specified element.
index
A 64-bit integer that represents the position of the array element to set.
Exceptions
ExceptionDescription

The value of an argument is outside the allowable range of values as defined by the invoked method.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

An attempt was made to access an element of an array or collection with an index that was outside its bounds.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also