Andrew Douglas Pitonyak schrieb:
This fails because v.BottomLine returns a copy of the structure, rather than a reference to the structure. so, what the working code does, is to create and modify a copy, then assign it back. So, why does assigning it back work rather than just assign it to a copy? Well, you ask too many question :-) or, it is because it is internally treated as a set (I did not check the real reason).
"BottomLine" is a cell property that contains a struct (com.sun.star.table.BorderLine). Structs are always returned by-value from the property set (as a copy), and therefore must be written back to the property set.
Regards Daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
