Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / IValuesArray Interface / SetValue Method
The object that contains one or many values.


In This Topic
    SetValue Method (IValuesArray)
    In This Topic
    Sets values to this IValuesArray object.
    Syntax
    'Declaration
     
    
    Function SetValue( _
       ByVal values As Object _
    ) As Boolean
    'Usage
     
    
    Dim instance As IValuesArray
    Dim values As Object
    Dim value As Boolean
     
    value = instance.SetValue(values)
    bool SetValue( 
       object values
    )

    Parameters

    values
    The object that contains one or many values.

    Return Value

    true if values are set, false otherwise.
    Remarks
    If values is an array, its elements will be set to the corresponding element of this IValuesArray object. Otherwise, the same value will be set to all elements.
    See Also