AD
Administrator
Syncfusion Team
May 4, 2005 02:02 PM UTC
Hi Sangavi,
You could derive from the GroupView control and expose the protected UpScrlBtnRect and DownpScrlBtnRect properties as shown in code below :
public class CustomGroupView : GroupView
{
public CustomGroupView() : base() {}
public Rectangle UpScrollButtonRectangle
{
get
{
return this.UpScrlBtnRect;
}
}
public Rectangle DownScrollButtonRectangle
{
get
{
return this.DownScrlBtnRect;
}
}
}
Let me know if this helps.
Regards,
Guru Patwal
Syncfusion, Inc.