Hi everyone,
I have some parameters and I want to delegate it's values within the vertical list. I am doing like this,
for(i=0;i<VerticalList.NoOfItems;i=i+1)
{
native(val,i)
{
val = parameters[i].actualVal;
}
((Application::StatusInfoItem)VerticalList.GetViewForItem( i )).Value = string(val);
}
But, there is an error when I am trying to set the Values of non-visible verticallist items. How can i do that? Or Is there a way to understand which items are visible?
Thanks in advance