Hello,
How do I set the TextWrappingValue to Around in my C# open xml file.
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,
KS
keith