kcontrols icon indicating copy to clipboard operation
kcontrols copied to clipboard

InternalMove jump over when reaonly

Open liuzg2 opened this issue 5 years ago • 0 comments

function TKCustomGrid.InternalMove

end; mcRight: begin Inc(ACol);

       while ACol< FColCount  do       <<<<<   i  add   this    jump over  when reaonly
          begin
            if   Cols[ACol].ReadOnly then

              Inc(ACol)
              else Break;
          end;
    if ACol < FColCount then
    begin
      if FMemRow >= 0 then
        ARow := FMemRow;
      FMemCol := ACol;
    end

liuzg2 avatar Oct 31 '19 01:10 liuzg2