[Root] / Xceed.Wpf.DataGrid Assembly / Xceed.Wpf.DataGrid Namespace / Row Class / IsValidCellType Method
A reference to the Cell whose type to verify.


In This Topic
    IsValidCellType Method (Row)
    In This Topic
    Retrieves a value indicating whether the type of the specified cell is supported by the row. This method is abstract.
    Syntax
    'Declaration
     
    Protected MustOverride Function IsValidCellType( _
       ByVal cell As Cell _
    ) As Boolean
    'Usage
     
    Dim instance As Row
    Dim cell As Cell
    Dim value As Boolean
     
    value = instance.IsValidCellType(cell)
    protected abstract bool IsValidCellType( 
       Cell cell
    )

    Parameters

    cell
    A reference to the Cell whose type to verify.

    Return Value

    Classes that override this method should return true if the type of the cell is supported by the row; false otherwise.
    Supported Frameworks

    Target Platforms: Windows 11, Windows, 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also