 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Ian Boyd Guest
|
Posted: Fri Sep 15, 2006 10:59 pm Post subject: Syntax to get a value of a multi-dimension array? |
|
|
i need to iterate over each dimension, each element of a multi-dimensional
variant array.
procedure IterateArray(v: Variant);
var
dim, element: Integer;
begin
for dim := 1 to VarArrayDimCount(v) do
for element := VarArrayLowBound(v, dim) to VarArrayHighBound(v, dim)
do
begin
//dim and element are now an dimension and element
//But the syntax:
DoSomething(v[dim][element]);
//is not correct
//but i want
v[dimension][elementOfThatDimension]
}
//Is
_VarArrayGet(v, dim, element);
//what i want, even though it's hidden inside System.pas?
//i can't tell if it's using Dimension/Element
end;
end; |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|