Article Details
Id:14869
Product:finPOWER Connect
Type:NEW
Version:3.00.08
Opened:25/08/2017
Closed:31/08/2017
Released:21/09/2017
Job: J019538

Word Documents; Summary Tables now include cells border style property

Summary Table Word Documents Options now include a property to set the cell border style.

This means the cell border can be set to either Single (the default), Double, Dotted, Dashed, DotDash or DotDotDash.

Example code snippet is shown below:

With .AddText("Some text")
  .WordDocumentOptions.SetBorders(iseWordDocumentSummaryTableBorder.Left, "Blue", 1, iseWordDocumentSummaryTableBorderStyle.Dotted)
  .WordDocumentOptions.SetBorders(iseWordDocumentSummaryTableBorder.Right, "Blue", 1, iseWordDocumentSummaryTableBorderStyle.DotDash)
End With