我正在开发一种连接到 SQL 数据库、取回数据集并在网格中显示该数据的工具。用户必须能够选择一个单元格块(只是矩形)并按 CTRL+C 将其复制到剪贴板。
我该怎么做呢:
TStringGrid
中完成,我更愿意保留我的功能,但也可以使用支持此功能的组件。 最佳答案
您可以尝试将单元格值复制为 TAB delimited text
,类似于以下代码:
procedure TForm1.Button1Click(Sender: TObject);
var
S: string;
X, Y: Integer;
begin
S := '';
for Y := StringGrid1.Selection.Top to StringGrid1.Selection.Bottom do
begin
for X := StringGrid1.Selection.Left to StringGrid1.Selection.Right - 1 do
S := S + StringGrid1.Cells[X, Y] + #9;
S := S + StringGrid1.Cells[StringGrid1.Selection.Right, Y] + sLineBreak;
end;
Delete(S, Length(S) - Length(sLineBreak) + 1, Length(sLineBreak));
Clipboard.AsText := S;
end;
关于delphi - 以excel格式将多个单元格从网格复制到剪贴板?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11916306/