'Declaration Public Overridable Function GetEditingValue( _ ByVal worksheet As Worksheet, _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal editor As FrameworkElement _ ) As EditingData
'Usage Dim instance As CellTypeBase 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 virtual 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.