EditCellTextEventArgs

open class EditCellTextEventArgs

Provides data for events raised when text of table Cell-s is edited.

  • Initializes a new instance of the EditCellTextEventArgs class with the specified Cell, old and new text.

    Declaration

    Swift

    public init(cell: Cell, oldText: String, newText: String)

    Parameters

    cell

    The Cell that was editied.

    oldText

    The text before the edit.

    newText

    The text after the edit.

    Return Value

    The newly initialized EditCellTextEventArgs object.