TableAddCellEvent does not work correct

  • in my own Component (from TWPRichText) i use

    Code
    procedure TMyWPRichText.TableAddCellEvent(RowNr, ColNr: Integer;
      par: TParagraph);
    begin
      // 1  based !
      if ColNr = 1 then begin
        par.SetText(RowNr.ToString);
      end;
    end;

    but the text comes in all Cells!

    What can i do?

    Ciao
    Stefan

    • Offizieller Beitrag

    The text should go into the first column and in my test it does.