プレゼンテーションのファイル形式を取得する
Contents
[
Hide
]
ファイル形式を取得するには、以下の手順に従ってください:
- IPresentationInfo クラスのインスタンスを作成します
- プレゼンテーションに関する情報を取得します
以下の例では、ファイル形式を取得しました。
例
string FilePath = @"..\..\..\Sample Files\";
string FileName = FilePath + "Getting the format of a file.pptx";
IPresentationInfo info;
info = PresentationFactory.Instance.GetPresentationInfo(FileName);
switch (info.LoadFormat)
{
case LoadFormat.Pptx:
{
break;
}
case LoadFormat.Unknown:
{
break;
}
}