Multiple <<TableStart>> merge fields in one line

Hi,

Does Aspose.Word (for .Net) support mail merge with regions, with multiple tables in one line (not separated by a paragraph)?

For example:

<<TableStart:X>><<X.a>><<TableEnd:X>> <<TableStart:Y>><<Y.b>><<TableEnd:Y>>

It seems to throw a Null reference exception from inside some Aspose.Word code. It works if I replace it with the snippet below.

<<TableStart:X>><<X.a>><<TableEnd:X>>
<<TableStart:Y>><<Y.b>><<TableEnd:Y>>

Any ideas?

Arvind

Hi
Thanks for your request. Two regions cannot start/end in the same paragraph or occupy the same table row. You can insert columns from table Y to table X, and then execute mail merge with regions.
Best regards.

Ok, thanks for clearing that up.

Arvind