The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
ADAdministrator 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.