I have a grid that has the VerticalScrollState set to AutoHide. Is there a way at runtime to determine if the vertical scrollbar is currently visible or not?
Thank you.
1 Answer, 1 is accepted
0
Accepted
Jack
Telerik team
answered on 19 Mar 2009, 09:14 AM
Hello Marc,
Yes, this is possible. You should check the Visibility property of the VScrollBar property. Here is a sample:
if (this.radGridView1.GridElement.VScrollBar.Visibility == ElementVisibility.Visible)
{
//...
}
If you have any other questions, we will be glad to help.