Hello,
I'm using the WinRT Doc.IO to create a few tables in a word document.
Teach table has a few columns and rows, and I want to provide an outline border only.
Looking at the documentation there isn't an easy way to specify just outline (unless I missed it)
I'm currently doing the following:
IWTable table = section.AddTable();
table.ResetCells(10, 5);
table.TableFormat.Borders.BorderType = BorderStyle.Single;
but that gives each cell a solid border. Is there an easy way to give the table outline a border?