Also on the same update, steps 5 & 6 I understand that these changes refer to the current StrataFrame Listview not the StrataListView in beta. I could not find a way to access a cell to change its background or the AdditionalItemHeight property. Could you please provide quick sample code or more specific detail on how to start using those new features?
No, this is in regards to the new SF ListView, not the old one. I can provide a sample, but this is for the new list view.
As I said in the original message, the e.ChildFormParameters in the ListView.BeforeChildFormExecuted is ReadOnly.
It is supposed to be readonly, it is a collection. You don't override the collection instance, you add items to it:
CSharp
int myParm2 = 2;
e.ChildFormParameters.Add("MyParm1");
e.ChildFormParameters.Add(myParm2);
VB.NET
Dim myParm2 As Integer = 2
e.ChildFormParameters.Add("MyParm1")
e.ChildFormParameters.Add(myParm2)