FMX.Memo.TCustomMemo.InsertAfter
Delphi
procedure InsertAfter(const APosition: TCaretPosition; const AFragment: string; const Options: TInsertOptions);
C++
void __fastcall InsertAfter(const Fmx::Memo::Types::TCaretPosition &APosition, const System::UnicodeString AFragment, const Fmx::Memo::Types::TInsertOptions Options);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
procedure function |
public | FMX.Memo.pas FMX.Memo.hpp |
FMX.Memo | TCustomMemo |
Description
Inserts the AFragment string into the memo's text, at APosition.
InsertAfter inserts in the memo's text the string specified by AFragment at the position specified by APosition. Options represent a set of insert options.
Note: InsertAfter does not insert a newline character. If the Pos field of the
APositionparameter is greater than the width of the specified line, thenAFragmentis inserted on the next line.
Note: If in a call of InsertAfter one removes
TInsertOptions.CanUndofromOptions, then the implemented changes cannot be backed out.
InsertAfter internally calls Model.InsertAfter.