'Declaration Public MustOverride Function GetEditingElement( _ ByVal paintingContext As PaintingContext, _ ByVal row As Integer, _ ByVal column As Integer, _ ByVal cellData As CellData, _ ByVal eventArgs As EventArgs _ ) As FrameworkElement
'Usage Dim instance As CellTypeBase Dim paintingContext As PaintingContext Dim row As Integer Dim column As Integer Dim cellData As CellData Dim eventArgs As EventArgs Dim value As FrameworkElement value = instance.GetEditingElement(paintingContext, row, column, cellData, eventArgs)
public abstract FrameworkElement GetEditingElement( PaintingContext paintingContext, int row, int column, CellData cellData, EventArgs eventArgs )
Parameters
- paintingContext
- The painting context.
- row
- The row index of editing cell.
- column
- The column index of editing cell.
- cellData
- The current cell data.
- eventArgs
- The System.EventArgs object associated with the editing.
Return Value
A System.Windows.FrameworkElement object represents the editing element.