Constructor HistoryTextItemEventArgs
HistoryTextItemEventArgs(List<List<Cell>>, Point, TextEditingLineStatus, HistoryTextItemEventArgs)
Initializes a new instance of the HistoryTextItemEventArgs class with the specified lines, cursor position, line status, and associated removed line.
public HistoryTextItemEventArgs(List<List<Cell>> lines, Point curPos, TextEditingLineStatus linesStatus, HistoryTextItemEventArgs removedOnAdded)
Parameters
linesList<List<Cell>>The lines of text affected by the change.
curPosPointThe cursor position at the time of the change.
linesStatusTextEditingLineStatusThe status of the line(s) affected by the change.
removedOnAddedHistoryTextItemEventArgsThe associated HistoryTextItemEventArgs for a removed line when an added line replaces it.
HistoryTextItemEventArgs(HistoryTextItemEventArgs, HistoryTextItemEventArgs)
Initializes a new instance of the HistoryTextItemEventArgs class by copying an existing instance and associating it with a removed line.
public HistoryTextItemEventArgs(HistoryTextItemEventArgs historyTextItem, HistoryTextItemEventArgs removedOnAdded)
Parameters
historyTextItemHistoryTextItemEventArgsThe existing HistoryTextItemEventArgs to copy.
removedOnAddedHistoryTextItemEventArgsThe associated HistoryTextItemEventArgs for a removed line when an added line replaces it.
HistoryTextItemEventArgs(List<List<Cell>>, Point, TextEditingLineStatus)
Initializes a new instance of the HistoryTextItemEventArgs class with the specified lines, cursor position, and line status.
public HistoryTextItemEventArgs(List<List<Cell>> lines, Point curPos, TextEditingLineStatus linesStatus)
Parameters
linesList<List<Cell>>The lines of text affected by the change.
curPosPointThe cursor position at the time of the change.
linesStatusTextEditingLineStatusThe status of the line(s) affected by the change.
HistoryTextItemEventArgs(HistoryTextItemEventArgs)
Initializes a new instance of the HistoryTextItemEventArgs class by copying an existing instance.
public HistoryTextItemEventArgs(HistoryTextItemEventArgs historyTextItem)
Parameters
historyTextItemHistoryTextItemEventArgsThe existing HistoryTextItemEventArgs to copy.