ComponentOne DataGrid for WPF and Silverlight
C1.Silverlight.DataGrid Namespace / DataGridComboBoxColumn Class / GetCellText Method
The row.

In This Topic
    GetCellText Method (DataGridComboBoxColumn)
    In This Topic
    Gets the text shown inside a cell.
    Syntax
    'Declaration
     
    
    Public Overridable Function GetCellText( _
       ByVal row As DataGridRow _
    ) As String
    public virtual string GetCellText( 
       DataGridRow row
    )

    Parameters

    row
    The row.
    Remarks

    This feature is widely used in export operations like converting the data grid content to Excel or Pdf.

    When the cell does not show a text like a DataGridCheckBoxColumn a representative text will be returned, e.g. "Yes", "No", "Undefined".

    See Also