Articles in this section
Category / Section

How do I view the hidden items in a GroupView programmatically?

1 min read

 

GroupView's BringItemIntoView method can be used to scroll down to a hidden item and bring that item into view

Here is the sample code:

C#

this.groupView1.SelectedItem = 20;

// This will scroll to Item 20.

this.groupView1.BringItemIntoView(20);

VB

Me.groupView1.SelectedItem = 20

' This will scroll to Item 20.

Me.groupView1.BringItemIntoView(20)

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied