Get attr vals

From SDU
Revision as of 09:42, 12 September 2008 by Kowy (Talk | contribs) (New page: __NOTOC__ == Overview == Get values of attributes on the root object. == Usage == get_attr_vals(int count, [ string attr_path... ]) * count - number of attributes to get. It must corresp...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Overview

Get values of attributes on the root object.

Usage

get_attr_vals(int count, [ string attr_path... ])

  • count - number of attributes to get. It must corresponds to the number of attr_path parameters
  • attr_path - name of the attribute with dot convention (you can ask for value also on subsidiary objects)

Result

You can found values in msg array on a triplicate position (first value is on msg[3], second on msg[6] and so on)

Examples

  • get first name, last name and email from CR's customer
send_wait (0, this, "get_attr_vals", 3, "customer.fisrt_name", "customer.last_name", "customer.email");
cstName = msg[3];
cstSurname = msg[6];
cstEmail = msg [9];