2
我試圖以編程方式將內容插入Powerpoint的Notes頁面。同一行上會有不同的彩色文字。我只通過段落得到它,但這樣做會使它們出現在不同的路線上。VSTO Powerpoint註釋頁面 - 同一行上的不同顏色的文字
這是我曾嘗試:
var slideRange = Application.ActivePresentation.Slides;
slideRange[1].NotesPage.Shapes[2].TextFrame.TextRange.Paragraphs(1).Font.Color.RGB = Color.Black;
slideRange[1].NotesPage.Shapes[2].TextFrame.TextRange.Paragraphs(1).Text = "word1\r";
slideRange[1].NotesPage.Shapes[2].TextFrame.TextRange.Paragraphs(2).Font.Color.RGB = Color.Gray;
slideRange[1].NotesPage.Shapes[2].TextFrame.TextRange.Paragraphs(2).Text = "word2\r";
的2個字出來的不同顏色,但我想有他們在同一行。
我曾嘗試通過TextRange(TextRange.Font.Color)設置顏色,但是這似乎是隻讀屬性。
Picture showing what I wish to achieve