Hi there,
To get a list of all cellview memeber just use
cellView->?
you will get a list with all the properties .
If you want also the values of the respective properties use:
cellView->??
You will get a list like (prop1 val1 prop2 val2 ... propN valN)
Some values could be also lists or dbObjects , it meants that you may want to dig down.
Also on any object/inst in nsch or layout you can do like this:
select the object
run:
x = css()
;; see all memebers
x->??
;; list properties
x->prop~>name
;; list props values
x->prop~>value
BR,
Marcel