IDocumentInfo
Contenu
[
Cacher
]
IDocumentInfo interface
Définit les méthodes requises pour obtenir des informations de base sur les documents.
public interface IDocumentInfo
Propriétés
Nom | La description |
---|---|
FileType { get; } | Obtient la description du format de fichier. |
PageCount { get; } | Obtient le nombre total de pages. |
Pages { get; } | Obtient la liste desPageInfo informations sur la page. |
Size { get; } | Obtient la taille du document en octets. |
Remarques
Apprendre encore plus
Exemples
L’exemple suivant montre comment récupérer les informations générales du document à l’aide deIDocumentInfo
.
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.");
}
Voir également
- espace de noms GroupDocs.Redaction
- Assemblée GroupDocs.Redaction