'Declaration Public ReadOnly Property Rows As ViewRowCollection
public ViewRowCollection Rows {get;}
'Declaration Public ReadOnly Property Rows As ViewRowCollection
public ViewRowCollection Rows {get;}
There can be a view with elements of any type T, as represented by the generic class View<T>. That type is not always known beforehand, so it is not always possible to access properties of view elements with strong-typed (early binding) code. Dynamic (untyped, late binding) access to view elements is provided by the ViewRowCollection owned by the view.
The collection of view rows (ViewRow objects) is always synchronized with the collection of view elements. ViewRow objects provide programmatic access to view elements and their properties.