how to combine two neighbour cells

    • Offizieller Beitrag

    Hi,

    >> how to combine two neighbour cells of different rows into one cell?
    it does ok for two neighbour cells of same row, but not for different row <<

    Code
    cellnext:= cell.RowDown;
    
    
    if cellnext<>nil then 
    begin
      include(cell.prop, paprRowMergeFirst);
      include(cellnext.prop, paprRowMerge);
    end;


    Julian