IDocumentInfo

IDocumentInfo interface

基本的なドキュメント情報を取得するために必要なメソッドを定義します.

public interface IDocumentInfo

プロパティ

名前 説明
FileType { get; } ファイル形式の説明を取得します。
PageCount { get; } 総ページ数を取得します。
Pages { get; } のリストを取得しますPageInfoページ情報.
Size { get; } ドキュメント サイズをバイト単位で取得します。

備考

もっと詳しく知る

次の例は、次を使用して一般的なドキュメント情報を取得する方法を示しています。IDocumentInfo.

    try
    {
        using (Redactor red = new Redactor(@"C:\Temp\testfile.doc"))
        {
            IDocumentInfo docInfo = red.GetDocumentInfo();
            Console.WriteLine("Document size: {0}", docInfo.Size);
            Console.WriteLine("Document format: {0}", docInfo.FileType.FileFormat);
            Console.WriteLine("Document contains {0} pages", docInfo.PageCount);
            foreach (PageInfo page in docInfo.Pages)
            {
                Console.WriteLine("Page {0} size is {1}x{2}", page.PageNumber, page.Width, page.Height);
            }
        }
    }
    catch (GroupDocs.Redaction.Exceptions.PasswordRequiredException)
    {
        Console.WriteLine("You are trying to access document which is password protected. Please, set the password.");
    }
    catch (GroupDocs.Redaction.Exceptions.IncorrectPasswordException)
    {
        Console.WriteLine("The provided password is not valid.");
    }

関連項目