We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Rect of scrollbutton in GroupView

Hi, I would like to know how I could get to the rectangle of the scroll button in the GroupView control. Thanks, Sangavi.

1 Reply

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.

Loader.
Live Chat Icon For mobile
Up arrow icon