I\'m using the Aspose library to create an Excel document. Somewhere in some cell I need to insert a new line between two parts of the text.
I tried \"\\r\\n\" but i
E.Run runForBreak = new E.Run(); E.Text textForBreak = new E.Text() { Space = SpaceProcessingModeValues.Preserve }; textForBreak.Text = "\n"; runForBreak.Append(textForBreak); sharedStringItem.Append(runForBreak);