Spread WPF 18
GrapeCity.Wpf.SpreadSheet.CellType Namespace / UniversalCellType Class / GetEditingValue Method
The editing worksheet.
The row index of editing cell.
The column index of editing cell.
A System.Windows.FrameworkElement object indicates the cell editor.


In This Topic
    GetEditingValue Method (UniversalCellType)
    In This Topic
    Gets the editing object which represents the edited value.
    Syntax
    'Declaration
     
    Public Overrides NotOverridable Function GetEditingValue( _
       ByVal worksheet As Worksheet, _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal editor As FrameworkElement _
    ) As EditingData
    'Usage
     
    Dim instance As UniversalCellType
    Dim worksheet As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim editor As FrameworkElement
    Dim value As EditingData
     
    value = instance.GetEditingValue(worksheet, row, column, editor)
    public override EditingData GetEditingValue( 
       Worksheet worksheet,
       int row,
       int column,
       FrameworkElement editor
    )

    Parameters

    worksheet
    The editing worksheet.
    row
    The row index of editing cell.
    column
    The column index of editing cell.
    editor
    A System.Windows.FrameworkElement object indicates the cell editor.

    Return Value

    An EditingData value represents the editing value.
    See Also