I think you're going to be pushing sh*t uphill to make this work. As Tony
says, the short answer is "it depends". Most object properties are dynamic:
that is, they are determined on-the-fly when you ask for them. Consider the
properties of a Range -- there are literally hundreds, and a Range can be
anything; so clearly Word can't store all the properties of all possible
Ranges.
Your Rows object is problematic for other reasons, too. Try this: create a
table. Select two cells from different rows and merge them. Now check the
table's Rows property. Or this: Create a table with 3 rows and 4 columns.
Merge cells 1 and 2 in row 1, cells 2 and 3 in row 2, and cells 3 and 4 in
row 3. Align the column boundaries. Now, using VBA, work out how many
columns the table has: three or four?
>>I don't entirely follow what you're asking but I think the answer is it
>>depends, As far as I know nothing is documented but Word keeps track of
[quoted text clipped - 21 lines]
>
> ciao lauro
Lauro - 28 Apr 2006 16:00 GMT
>I think you're going to be pushing sh*t uphill to make this work. As Tony
>says, the short answer is "it depends". Most object properties are dynamic:
[quoted text clipped - 9 lines]
>row 3. Align the column boundaries. Now, using VBA, work out how many
>columns the table has: three or four?
I think you are perfectly rigth. I guess I'm going to rely on Word
objects and create my own object on-the- fly whenever I need them,
without trying to store everything.
Ciao LAuro