• If i set the ReadOnly of the Editor, i still can do :

    • Change Font name
    • Font Color
    • Font Size
    • Font Background
    • Paragraph Background
    • Change Text with the Spellchecker
    • Undo/Redo

    do i have to control these actions manually ?

    • Offizieller Beitrag

    Hi,

    In case of resizing a table "SaveChanging" is called. (This is necessary because of the data senstive control which would realod the text on Changing) Note that changing tables is controlled by edit options.

    You can modify this code in WPCtrMemo to solve the TAB in table row problem:

    if (wpAutoInsertRow in EditOptions) and (par.NextCell = nil)
    and Changing // <-- inserted
    then
    begin
    InsertRow;
    ChangeApplied; // <-- inserted
    par := nil;
    end else

    Julian