次のコードを使用してプレゼンテーションにスライドを追加し、その背景色を、既にプレゼンテーションにあるスライドの 1 つの色に設定したいと考えています。
presentation.Slides.AddSlide(presentation.Slides.Count + 1 presentation.Slides[presentation.Slides.Count].CustomLayout);
//set the last slide color to the color of the current slide
presentation.Slides[presentation.Slides.Count].Background.Fill.ForeColor.RGB = presentation.Slides[e].Background.Fill.ForeColor.RGB;
presentation.Save();
ただし、色は赤に設定されません。右側の値は 255 で、これが必要ですが、左側の値は 11675 (色を設定した行の前後) です。これを修正する方法は?