2

我们所做的:

我们为 Powerpoint 2010 和 Powerpoint 2003 创建 powerpoint 文档。

问题出在哪里:

使用以下源代码创建的标签在 Powerpoint 2010 和 Powerpoint 2003 中显示不同。此错误仅发生在对齐 = 中心和/或我们设置旋转 > 0 的标签中。(见屏幕截图)

private Microsoft.Office.Interop.PowerPoint.Shape AddLabel(Microsoft.Office.Interop.PowerPoint.Slide Slide,
        float Left, float Top, float Width, float Height, string Text, float FontSize, 
        bool Bold, Microsoft.Office.Interop.PowerPoint.PpParagraphAlignment Alignment)
{
        Microsoft.Office.Interop.PowerPoint.Shape label;

        label = Slide.Shapes.AddLabel(
            Microsoft.Office.Core.MsoTextOrientation.msoTextOrientationHorizontal,
            Left, Top, Width, Height);
        label.TextFrame.TextRange.Text = Text;
        label.TextFrame.TextRange.Font.Size = FontSize;
        label.TextFrame.TextRange.Font.Bold = Bold ? MsoTriState.msoTrue : MsoTriState.msoFalse;
        label.TextFrame.TextRange.ParagraphFormat.Alignment = Alignment;

        return label;
} 

[...]

label = AddLabel(slide, 50, (slide.Master.Height - 30) / 2, slide.Master.Height, 30,
            "Nutzen", 18, false, PpParagraphAlignment.ppAlignCenter);
label.Rotation = -90;

有谁知道,是否有一种简单的方法可以使源代码与两个 Powerpoint 版本兼容?

在此处输入图像描述

4

0 回答 0