Namespace: Aspose.PdfAssembly: Aspose.PDF (in Aspose.PDF.dll) Version: 20.3
Syntaxpublic OperatorCollection Contents { get; }
Public ReadOnly Property Contents As OperatorCollection
Get
public:
property OperatorCollection^ Contents {
OperatorCollection^ get ();
}
member Contents : OperatorCollection with get
Property Value
Type:
OperatorCollection
Examples
Example is demonstrates how to scan operators stream of page.
Document document = new Document("sample.pdf");
Operators contents = document.Pages[1].Contents;
foreach(Operator op in contents)
{
Console.WriteLine(op);
}
See Also