I am writing a perl script to create a table in a MS Word document. I can get the table generated and data in the table but can't seem to set the Heading Row.
I have created a word macro and looked at the VB code but still can't the header row to repeat when the table spans more than one page.
The following code does not generate any errors.
my $table = $doc1->Tables->Add($word->Selection->Range,$t_row, $t_co
+l);
$table->Rows->{HeadingFormat} = 1;