dotConnect for PostgreSQL Documentation
Devart.Data.PostgreSql Namespace / PgSqlArray Structure / SetValue Method
The new value for the specified element.
A one-dimensional array of 32-bit integers that represent the indexes specifying the position of the element to set. Note that indexes start from 1. Element number 1 is the first element of a PgSqlArray.

In This Topic
    SetValue Method (PgSqlArray)
    In This Topic
    Sets the specified element in the current PgSqlArray to the specified value.
    Syntax
    'Declaration
     
    Public Sub SetValue( _
       ByVal value As Object, _
       ByVal ParamArray indices() As Integer _
    ) 
    public void SetValue( 
       object value,
       params int[] indices
    )

    Parameters

    value
    The new value for the specified element.
    indices
    A one-dimensional array of 32-bit integers that represent the indexes specifying the position of the element to set. Note that indexes start from 1. Element number 1 is the first element of a PgSqlArray.
    See Also