Ejemplo n.º 1
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Append a division to this publication.
		/// </summary>
		/// <param name="divLayoutMgr"></param>
		/// <remarks>No testing has been done to support multiple divisions yet</remarks>
		/// ------------------------------------------------------------------------------------
		public void AddDivision(DivisionLayoutMgr divLayoutMgr)
		{
			CheckDisposed();

			m_divisions.Add(divLayoutMgr);
			divLayoutMgr.Publication = this;

			// Configure the division only if the publication is already configured,
			// otherwise we will do it in PublicationControl.Configure().
			if (m_fConfigured)
				divLayoutMgr.Configure();
		}