Tooltip Cell
Represents a cell that displays a text accompanied by a tooltip.
Namespace: LSOne.Controls.Cells
Assembly: LSOne.Controls.ListView
Syntax
public class TooltipCell : Cell
Constructors
Name | Description |
---|---|
TooltipCell(string, LSOne.Controls.Style, string) | Initializes a new instance of the TooltipCell class with the given text, style and tooltip text |
TooltipCell(string, string) | Initializes a new instance of the TooltipCell class with the given text and tooltip text |
Examples
var cell = new TooltipCell(item.Text.ToString(), "tooltip text");
row.AddCell(cell);