Click or drag to resize

CustomCellGetIdentifier Property

Gets or sets a delegate to get the identifier of the cell based on its content.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public Func<CellEventArgs, string> GetIdentifier { get; set; }

Property Value

Type: FuncCellEventArgs, String
The delegate to get the identifier for the cell.
Remarks
When you have different controls on a per-row level, each variation must have an identifier string to allow the framework to cache the different types of cells to provide good performance. This hooks into standard cell caching mechanisms in certain platforms, such as on the Mac.
See Also