如何从TcxGrid获取选定的单元格文本?

时间:2012-03-26 13:17:29

标签: delphi devexpress tcxgrid

我正在使用Devexpress TcxGrid,我正在尝试获取选定的单元格文本。我的TcxGrid连接到某种DataSource - 我认为它是DataControler。

我的目标是从整行中的单元格中获取文本,并将其放在以逗号分隔的字符串中。

3 个答案:

答案 0 :(得分:3)

如果你想要多重选择的值和TcxGridDbTableView: 在我的结果中,我没有行之间的分隔。

function GetSelectedValuesFrmGrid: String;
var
  intSelectLoop,
  intRowLoop: Integer;
  oTableView: TcxGridDbTableView;
  strValue: Variant;
  oList: TStringList;
begin
  Result:= '';
  // Kind Of TableView 
  if <TcxGrid>.ActiveView is TcxGridDbTableView then
  begin
    oTableView:= <TcxGrid>.ActiveView as TcxGridDbTableView;
    oList:=  TStringList.Create();
    try
      for intSelectLoop:= 0 to oTableView.Controller.SelectedRowCount-1 do
      begin
        for intRowLoop:= 0 to oTableView.Controller.SelectedRows[intSelectLoop].ValueCount-1 do
        begin
          strValue:= oTableView.Controller.SelectedRows[intSelectLoop].Values[intRowLoop];
          // Value can be Null
          if VarIsNull(strValue) then
          begin
            strValue:= '';
          end;
          oList.Add(strValue);
        end;
      end;
      Result:=  oList.CommaText;
    finally
      oList.Free;
    end;
  end;
end;

答案 1 :(得分:1)

网格将有一个DataControler后代。您可以遍历DataController中的项目,并且根据网格的配置方式,DataController中的项目可以对应于网格中显示的各个“列”。这就是说DataController中的项目保持在其中

此代码将允许您循环遍历网格中的每一列,并根据DataController值构建字符串。

var
    i: Integer;
    DC: TcxCustomDataController;
    s: string;
begin
    s := '';
    DC := <yourgrid>.DataController;
    for i := 0 to <yourgrid>.ColumnCount -1 do begin
        s := s + vartostr(DC.Values[DC.FocusedRecordIndex, <yourgrid>.Columns[i].Index]) + ',';
    end;
    if Length(s) > 0 then
        s := Copy(s,1,Length(s)-1);
end;

答案 2 :(得分:0)

您需要所选行中所有单元格的文本吗?

for I := 0 to cxGridDBTableView.Controller.SelectedRowCount -1 do
    for J := 0 to cxGridDBTableView.Controller.SelectedRows[I].ValueCount -1 do
      SelectedRowStr := SelectedRowStr + VarToStr(cxGrid1DBTableView1.Controller.SelectedRows[I].Values[J]) + ',';
SelectedRowStr := Copy(SelectedRowStr,1,length(SelectedRowStr)-1);