Article Details
Id:15776
Product:finPOWER Connect
Type:NEW
Version:3.01.10
Opened:13/12/2018
Closed:07/01/2019
Released:05/02/2019
Job: J021672

Word Document, Summary Table options; new option to keep text in a Cell together

A new property has been added to Word Document Summary Table Cell's to keep text together on the same page.

Normally text in a cell (and therefore row) may be split over a page, however if this new property is set to True the text will be kept together on the same page (unless it is too big to fit on a single page).

This can be defined for an entire table, as below:

' Options
With SummaryTable.WordDocumentOptions
  .ParagraphKeepLinesTogether = True
End With

Or, for each Cell, as below:

With summaryTable.Rows.Add.Cells()
  With .AddText("Text")
    .WordDocumentOptions.ParagraphKeepLinesTogether = True
  End With  
End With

The following standard Bookmarks now use this new property:

  • Account.Client
  • Account.ClientBlockWithGuarantors
  • Account.Security
  • Account.SecurityPhysical
  • Account.SecurityPhysicalWithLocation
  • Account.SecurityTradeIn
  • Account.SignatureBlock