Click or drag to resize

DocumentSubject Property

Subject of this document.

Namespace:  Atalasoft.Imaging.Codec.Pdf
Assembly:  Atalasoft.dotImage.PdfReader (in Atalasoft.dotImage.PdfReader.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public string Subject { get; }

Property Value

Type: String
Examples
C#
using (FileStream file = new FileStream(path, FileMode.Open, FileAccess.Read))
{
   Document document = new Document(file);
   Console.WriteLine("Subject: " + document.Subject);
}
[New Example] (Visual Basic)
Dim file As FileStream = New FileStream(path, FileMode.Open, FileAccess.Read)
Dim document As Document = New Document(file)
Console.WriteLine("Subject: " & document.Subject)
file.Close()
See Also