Browse By Tags

  • Silverlight => Infragistics.Excel => How to set Height and Width of WorksheetCell.Comment..which is of type WorksheetCellComment

    I am creating comment with following code.

    cell.Comment = new WorksheetCellComment()

                                    {

                                        Text = new FormattedString("Some Text"),

                                    };

    where cell is WorksheetCell.

    With this code i is creating…