Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
UltraWinGrid URL Column Appearance
posted

Hi

I have a UltraGrid that contains a URL column. I formatted this column WITHOUT UNDERLINE feature.

I did this with the following code: drawParams.AppearanceData.FontData.Underline = DefaultableBoolean.Default;, on DrawPhase IUIElementDrawFilter.GetPhasesToFilter(ref UIElementDrawParams drawParams) event.

 

However, when I put the mouse cursor in a cell of this column, I want to show the text UNDERLINED.

 

When I use DataGridView, I can do it with this code:

DataGridView1.LinkBehavior = LinkBehavior.HoverUnderline;

*This code automatically do what I want (to show the text of cell (underlined) just when the mouse cursor is hover).

 

 

Thanks