Table Properties
- This topic has 1 reply, 1 voice, and was last updated 9 years, 3 months ago by .
Viewing 1 post (of 1 total)
Viewing 1 post (of 1 total)
- You must be logged in to reply to this topic.
Home › Forums › WordprocessingML › Table Properties
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