Ancestor type: CObject
This type of object represents content stream in document (in page)
bool equals(QObject* otherObject)
Return true, if this object is equal to specified object (i.e. if they internally point to the same item) Reference is compared, not the value of objects
void deleteOperator(PdfOperator op,bool indicateChange=true)
Delete specified operator from this content stream. If parameter indicateChange is true (which is default), changes are immediately written to underlying stream.
Return text representation of this content stream
void insertOperator(PdfOperator op,PdfOperator newOp,bool indicateChange=true)
Insert specified operator newOp in this content stream, after operator op. If parameter indicateChange is true (which is default), changes are immediately written to underlying stream.
void replace(PdfOperator oldOp,PdfOperator newOp,bool indicateChange=true)
Replace old operator oldOp with new operator newOp in this stream. If parameter indicateChange is true (which is default), changes are immediately written to underlying stream.
Write any unwritten changes to operators to underlying stream.
PdfOperator getFirstOperator()
Return first operator in this contentstream. If not contains any operator, return NULL.
PdfOperator getLastOperator()
Return last operator in this contentstream. If not contains any operator, return NULL.
Check if contentstream contains some operator.