IDocumentInfo
Contenuti
[
Nascondere
]
IDocumentInfo interface
Definisce i metodi richiesti per ottenere informazioni di base sul documento.
public interface IDocumentInfo
Proprietà
Nome | Descrizione |
---|---|
FileType { get; } | Ottiene la descrizione del formato del file. |
PageCount { get; } | Ottiene il conteggio totale delle pagine. |
Pages { get; } | Ottiene l’elenco diPageInfo informazioni sulla pagina. |
Size { get; } | Ottiene la dimensione del documento in byte. |
Osservazioni
Saperne di più
Esempi
L’esempio seguente mostra come recuperare le informazioni generali sul documento utilizzandoIDocumentInfo
.
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.");
}
Guarda anche
- spazio dei nomi GroupDocs.Redaction
- assemblea GroupDocs.Redaction