Documentation
 All Classes Functions Variables Properties
Image.h
1 // MSTRasterSDK.h
2 
3 #pragma once
4 
5 #include "FileFormat.h"
6 using namespace System::Collections::Generic;
7 
8 namespace MST {
9 namespace Imaging {
10 
15  public ref class Image:public FileFormat
16  {
17  public:
21  property bool IsDocument
22  {
23  virtual bool get()override
24  {
25  return false;
26  }
27  }
28 
37  bool Find(System::String^ Text,List<System::Drawing::Rectangle>^ rectList,int PageNo,bool MatchCase,bool IsWholeWord);
38  };
39 }
40 }
Definition: FileFormat.h:15
Definition: Image.h:15