2 #include "AnnotationPage.h"
3 using namespace System::Collections::Generic;
34 m_AnnPages =
gcnew array<MSTAnnotationPage^>(nPageCount);
36 for(
int i = 0 ; i < nPageCount ; i++)
46 void LoadXML(String^ strPath);
52 void SaveXML(String^ strPath);
61 return (m_AnnPages!=
nullptr)?m_AnnPages->Length:0;
72 if(m_AnnPages==
nullptr || nIndex < 0 || nIndex >= Count)
74 else return m_AnnPages[nIndex];
78 array<MSTAnnotationPage^>^ m_AnnPages;
79 System::Windows::Forms::ScrollableControl^ m_Parent;
Definition: AnnotationPage.h:95
Definition: AnnotationDocument.h:14
MSTAnnotationDocument(int nPageCount, System::Windows::Forms::ScrollableControl^ Parent)
Constructor of a class.
Definition: AnnotationDocument.h:32
MSTAnnotationDocument(System::Windows::Forms::ScrollableControl^ Parent)
Constructor of a class.
Definition: AnnotationDocument.h:21