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

How do you set the size of scroll tool tip?

I am trying to handle ScrollTipFeedback event, but what I set as e.Text does not fit in the tool tip window provided by the grid. Is there a way to change the size of the scroll tool tip window? Thanks, Koray

1 Reply

AD Administrator Syncfusion Team August 31, 2004 01:29 PM UTC

Try setting e.Size in that event.
private void gridControl1_ScrollTipFeedback(object sender, ScrollTipFeedbackEventArgs e)
{
	e.Size = this.gridControl1.ScrollTip.GetPreferredSize(e.Text);
}

Loader.
Live Chat Icon For mobile
Up arrow icon