ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / DataGridCheckBoxColumn Class / GetCellText Method
The row that contains the cell that is being queried.

In This Topic
    GetCellText Method (DataGridCheckBoxColumn)
    In This Topic
    Gets the text which represent the value shown inside a cell.
    Syntax
    'Declaration
     
    
    Public Overrides Function GetCellText( _
       ByVal row As DataGridRow _
    ) As String
    public override string GetCellText( 
       DataGridRow row
    )

    Parameters

    row
    The row that contains the cell that is being queried.
    Remarks
    If the value is true the text shown will be value of the property CheckedText. If the value is false the text shown will be value of the property UncheckedText. If the value is null the text shown will be value of the property UndefinedText.
    See Also