members and properties: can I access them via ASP with symbolic name instead of a number ? -
07-19-2004
, 04:57 AM
I'm getting custom properties values from a cube via asp.
I do something like
rs_type=cl.axes(1).positions(current_line).members (0).properties(2)
but I would like to do this:
rs_type=cl.axes(1).positions(current_line).members (0).properties("type")
which is much more readable.
"type" is the correct name of the dimensions. Maybe I need to write some prefix ? |