Upon further explorations, I think what I want is.
TextWrappingValues tableTextWrapping = TextWrappingValues.Around;
but when I try to append this to my table properties:
TableStyle tableStyle = new TableStyle() { Val = "TableGrid" };
TableLook tableLook = new TableLook() { Val = "04A0" };
TextWrappingValues tableTextWrapping = TextWrappingValues.Around;
tableProperties.Append(tableTextWrapping);
I get the following error on the append:
cannot convert from ‘DocumentFormat.OpenXml.Wordprocessing.TextWrappingValues’ to ‘System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement>’
Thanks again,
KS