William.Zhang wrote:您好,
感謝您的回覆。
經過確認,目前我們還不支援這項功能。我們的已將此功能添加到了我們的更新列表,任務編號為:SPIREDOC-5504。我們的開發團隊會進一步調查實現方案,如果有進展了,我們會及時通知您。
Sincerely,
William
E-iceblue support team
Document doc = new Document();
Section section = doc.AddSection();
Spire.Doc.Documents.Paragraph paragraph = section.AddParagraph();
Spire.Doc.Fields.TextRange farEastLayout = paragraph.AppendText("test");
FarEastLayout style = new FarEastLayout();
style.Vertical = true;
farEastLayout.CharacterFormat.FarEastLayout = style;
doc.SaveToFile(outputFile, FileFormat.Docx);
doc.Close();