ComponentOne FlexGrid for UWP
C1.UWP.FlexGrid Assembly / C1.Xaml.FlexGrid Namespace / ICellFactory Interface
Members

In This Topic
    ICellFactory Interface
    In This Topic
    Defines the functionality of classes used to create grid cells dynamically.
    Object Model
    ICellFactory Interface
    Syntax
    'Declaration
     
    
    Public Interface ICellFactory 
    public interface ICellFactory 
    Remarks
    The C1FlexGrid fully virtualizes rows and columns. Cells are created only when their row and column are visible to the user. In this case, a class that implements the ICellFactory interface is used to create the Windows.UI.Xaml.FrameworkElement objects that represent the cells. When cells are scrolled out of view, the same class is notified so it can properly dispose of the cell or recycle it for future use.
    See Also