Documentation
 All Classes Functions Variables Properties
Pdf.h
1 #pragma once
2 #include "Document.h"
3 
4 using namespace System::Collections::Generic;
5 
6 namespace MST {
7  namespace Imaging {
8  public ref class Pdf:public Document
9  {
10  public:
11  array<String^>^ GetTOC();
12  void Redact(RedactionMacro redact, int FromPageNo, int ToPageNo);
13  bool AddWatermark(int FromPageNo, int ToPageNo, String^ WatermarkText,System::Drawing::Font^ font, int RotationAngle, int opacity);
14  };
15 }
16 }
Definition: Pdf.h:8
Definition: Document.h:14