How do I create hints in columns?

Hello all,

I am trying to put a hint when you put the cursor over a cell, but the only thing I could get is the validation from RegEx, but I want to put a personalized text, explaining the contents of the field, there is a way to do this?

Thank you in advance!!

Rudolf Gutlich

Hi Rudolf Gutlich,

Thanks for considering Aspose.

You may create comments in your required cells for your need.

The following code shows creating comments in a cell.

int row = 5;

int column = 3;

WebCell cell = GridWeb1.WebWorksheets[0].Cells[row,column];

WebComments comments = GridWeb1.WebWorksheets[0].Comments;

WebComment comment = comments.AddComment(cell);

comment.Note = my comment;

Please check the online wiki to get detail information about comments.

Thank you.

Is there a way to add comments in the header cells?

Thanks!

Hi,

Current version doesn't support creating comments in the header.

Hello, I saw in other post that in the version 1.9.0.1 there is a way to implement the hint on the header.
I didn't find anything that I could use to create this hint in the header, only in the cells. How do I use this feature in GridWeb???

Thanks,

Rudolf Gütlich
Delsis Eng.

Hi,

Use WebWorksheet method:

GetColumnHeaderToolTip, GetRowHeaderToolTip,SetRowHeaderToolTip,SetColumnHeaderToolTip