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.");
    }

또한보십시오