C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridCellFactory Class / CreateCellContent(GridCellType,GridCellRange,Object) Method
Type of the cell.
The range.
Type of the cell content.


In This Topic
CreateCellContent(GridCellType,GridCellRange,Object) Method
In This Topic
Creates the content of the cell.
Syntax
'Declaration
 
Public Overrides Function CreateCellContent( _
   ByVal cellType As GridCellType, _
   ByVal range As GridCellRange, _
   ByVal cellContentType As Object _
) As UIKit.UIView
 
'Usage
 
Dim instance As GridCellFactory
Dim cellType As GridCellType
Dim range As GridCellRange
Dim cellContentType As Object
Dim value As UIKit.UIView
 
value = instance.CreateCellContent(cellType, range, cellContentType)

Parameters

cellType
Type of the cell.
range
The range.
cellContentType
Type of the cell content.
Remarks
The actual data is set in the BindCellContent method.
See Also