Avatar

Level 10

LiveCycle uses a Heirarchy for all the fields in the form.

When you see "form1[0].#subform[0].Property[0]" that means Property field is grouped under subform which is grouped under form1. The [0] means first occurence of the field. Using LC you can dynamically create fields at the runtime which will increase the index value from 0, 1, 2 etc..

If you want to refer to (or) access Property field properties /methods you can use the name directly in your code or use the full path..

Property.rawValue;

(OR)

form1[0].#subform[0].Property[0].rawValue;

Hope this helps..

Thanks

Srini