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.
Up arrow icon