TOC PREV NEXT INDEX

OMFset_str_array_val

Synopsis


INTEGER FUNCTION OMFset_str_array_val(object_id,
. index,
. string)
#include <avs/omf.inc>
INTEGER object_id(OIDSIZ)
INTEGER index
CHARACTER*(*) string

Description

For a complete description of this function, see OMset_str_array_val .

Arguments

object_id
The id of an object, expressed as an integer.
index
The array index, expressed as an integer.
string
A character string specifying the object's value.

Returned value

The status code (see OMset_str_array_val).

Examples


#include <avs/omf.inc>
INTEGER strarr_id(OIDSIZ)
CHARACTER*30 value
...
value = 'My String'
IF (OMFset_str_array_val(strarr_id,
. 0,
. value) .NE. 1)
. PRINT*,'Error setting string value of object strarr'

See Also

OMFget_str_array_val

TOC PREV NEXT INDEX