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