gives the actual variable name where the member is stored (global):
This can be used in -textvariable options etc.
eg.:
entry .try -textvariable [struct var $current->field]
pack .try
struct arrayset struct->member items values
sets values in an array member
eg.:
% struct arrayset $current->value {a b c} {1 2 3}
% struct value $current->value(b)
2
struct arrayget struct->member
% struct arrayget $current->value
b 2 a 1 c 3
struct arraynames struct->member
% struct arraynames $current->value
b a c
struct arraysize struct->member
% struct arraysize $current->value
3