如何从C#更改PowerPoint中TextRange的字体颜色?

前端之家收集整理的这篇文章主要介绍了如何从C#更改PowerPoint中TextRange的字体颜色?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用C#创建了一个PowerPoint演示文稿:
PowerPoint.Application powerpointApplication;
PowerPoint.Presentation pptPresentation;
PowerPoint.Slide Slide;

// Create an instance of PowerPoint.
powerpointApplication = new PowerPoint.ApplicationClass();

// Create a PowerPoint presentation.
pptPresentation = powerpointApplication.Presentations.Add(
Microsoft.Office.Core.MsoTriState.msoTrue);


// Create empty slide
Slide = pptPresentation.Slides.Add(1,PowerPoint.PpSlideLayout.ppLayoutBlank);

TextRange objTextRng = objSlide.Shapes[1].TextFrame.TextRange;
objTextRng.Text = "Remote sensing calendar 1";
objTextRng.Font.Name = "Comic Sans MS";
objTextRng.Font.Size = 48;
// TODO: change color
// objTextRng.Font.Color 



// Save presentation
pptPresentation.SaveAs( BasePath + "result\\2_example.ppt",PowerPoint.PpSaveAsFileType.ppSaveAsDefault,MsoTriState.msoTrue // TODO: что за параметр???
                      );
pptPresentation.Close();

现在,我该如何更改objTextRng的字体颜色?

解决方法

以下代码将字体颜色设置为红色:
objTextRng.Font.Color.RGB = Color.Red.ToArgb();

如果要指定其他颜色,可以使用其他pre-defined colors之一,或使用Color.FromArgb method指定自己的RGB值.

无论哪种方式,请确保在您使用的Color对象上调用ToArgb method. RGB属性要求指定RGB颜色值.

原文链接:https://www.f2er.com/csharp/244431.html

猜你在找的C#相关文章