プレゼンテーション内の検索と置換
Contents
[
Hide
]
以下は従うべき手順です:
- プレゼンテーションを開く。
- テキストを検索する。
- テキストを置換する。
- プレゼンテーションを保存する。
string FilePath = @"..\..\..\Sample Files\";
//プレゼンテーションを開く
Presentation pres = new Presentation(FilePath + "Find and Replace.pptx");
//プレゼンテーション内のすべてのテキストボックスを取得する
ITextFrame[] tb = SlideUtil.GetAllTextBoxes(pres.Slides[0]);
for (int i = 0; i < tb.Length; i++)
foreach (Paragraph para in tb[i].Paragraphs)
foreach (Portion port in para.Portions)
//置換対象のテキストを見つける
if (port.Text.Contains(strToFind))
//既存のテキストを新しいテキストで置換する
{
string str = port.Text;
int idx = str.IndexOf(strToFind);
string strStartText = str.Substring(0, idx);
string strEndText = str.Substring(idx + strToFind.Length, str.Length - 1 - (idx + strToFind.Length - 1));
port.Text = strStartText + strToReplaceWith + strEndText;
}
pres.Save(FilePath + "Find and Replace.pptx",Aspose.Slides.Export.SaveFormat.Pptx);