0

如何旋转SmartArtNode文本 aspose.slide

我用:

tmNode.TextFrame.TextFrameFormat.RotationAngle = 90

但它不工作

4

1 回答 1

0

我已观察到您的要求,并建议您使用以下示例代码尝试使用 Aspose.Slides for.NET 17.1.0。我能够观察到文本的旋转效果。我希望这会有所帮助。如果有任何进一步的询问,您也可以在Aspose.Slides 论坛中与我们联系。

using (Presentation presentation = new Presentation())
{
    // Accessing the slide
    ISlide slide = presentation.Slides[0];

    // Adding SmartArt shape and nodes
    var chevron = slide.Shapes.AddSmartArt(10, 10, 800, 60, SmartArtLayoutType.ClosedChevronProcess);
    var node = chevron.AllNodes.AddNode();
    node.TextFrame.Text = "Some text";

    node.TextFrame.TextFrameFormat.RotationAngle = 90;
    // Saving Presentation
    presentation.Save(dataDir + "FillFormat_SmartArt_ShapeNode_out.pptx", SaveFormat.Pptx);
}

我与 Aspose 合作,担任开发人员传道者。

于 2017-02-09T07:43:42.800 回答