2012-05-15 1 views
0

새로 추가 된 사각형을 PowerPoint 2010 interop에서 "채우기 없음"으로 설정하는 방법을 알고 싶습니다. "채우기 없음"을 설정하는 방법 PowerPoint 2010 interop에 도형을 채우는 방법

PowerPoint.Presentation presentation = Globals.ThisAddIn.Application.ActivePresentation; 
PowerPoint.Shape newshape = presentation.Slides[slideIndex].Shapes.AddShape(Office.MsoAutoShapeType.msoShapeRectangle, 72f, 72f, 72f, 72f); 
newshape.Fill.Transparency = 1; 

답변

3

보십시오 추가 ... 지금 내가 가지고있는 코드입니다

newshape.Fill.Visible = Microsoft.Office.Core.MsoTriState.msoFalse 
관련 문제