2

PSafeArrayDelphiからデータを読み取る必要があります。
これPSafeArrayは、C# で開発された DLL に実装されたメソッドによって返されます。このメソッドは、2 次元の文字列配列を返しますstring[,]PSafeArrayそのような結果を Delphi で読み取る方法は?

4

1 に答える 1

6

SafeArrayGetLBoundSafeArrayGetUBoundSafeArrayGetElement関数を使用する必要があります。

このサンプルを試す

var
  LSafeArray: PSafeArray;
  LBound, UBound, I: LongInt;
  LYBound, UYBound, J: LongInt;
  Index: array [0..1] of Integer;
  LData: OleVariant;
begin
  //get the PSafeArray
  LSafeArray := GetArray;// GetArray is your own function
  //get the bounds of the first dimension
  SafeArrayGetLBound(LSafeArray, 1, LBound);
  SafeArrayGetUBound(LSafeArray, 1, UBound);
  //get the bounds of the second dimension
  SafeArrayGetLBound(LSafeArray, 2, LYBound);
  SafeArrayGetUBound(LSafeArray, 2, UYBound);

  //iterate over the array  
  for I := LBound to UBound do
   for J := LYBound to UYBound do
    begin
      //set the index of the element to get
      Index[0]:=I; 
      Index[1]:=J;
      SafeArrayGetElement(LSafeArray, Index, LData);

      //do something with the data  
      Memo1.Lines.Add(LData);
    end;
  SafeArrayDestroy(LSafeArray);
end;
于 2012-10-27T14:06:16.953 に答える