我在.NET中创建了一个Powerpoint加载项,我知道如何在幻灯片中添加新的文本框。但我不知道如何添加单选按钮,检查按钮和输入文本字段。有可能吗?
private void questions()
{
PowerPoint.Shape textBox = activeSlide.Shapes.AddTextbox(Office.MsoTextOrientation.msoTextOrientationHorizontal, 50, 50, 500, 500);
textBox.TextFrame.TextRange.InsertAfter("Text");
}
答案 0 :(得分:1)
以下是您在VBA中的表现方式。我将把VBA 2 C#翻译工作交给你。
Dim oSl As Slide
Dim oSh As Shape
Set oSl = ActivePresentation.Slides(1)
Set oSh = oSl.Shapes.AddOLEObject(100, 100, 200, 30, "Forms.OptionButton.1")
更多信息: http://msdn.microsoft.com/en-us/library/office/bb230698(v=office.12).aspx