CustomCellCreateCell Property |
Gets or sets a delegate to create the contents of the cell.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Func<CellEventArgs, Control> CreateCell { get; set; }
Public Property CreateCell As Func(Of CellEventArgs, Control)
Get
Set
member CreateCell : Func<CellEventArgs, Control> with get, set
Property Value
Type:
FuncCellEventArgs,
ControlThe delegate to create the cell content.
Remarks
You can also override the
OnCreateCell(CellEventArgs) method in subclasses.
Note that you need to handle
ConfigureCell to set up the cell for a particular row of data
as the control may be reused when scrolling the view.
See Also