////////////////////////////////////////////////////////////////////
        /// <summary>
        /// PdfContents constructor for page contents
        /// </summary>
        /// <param name="Page">Page parent</param>
        ////////////////////////////////////////////////////////////////////
        public PdfContents(
			PdfPage		Page
			)
            : base(Page.Document, ObjectType.Stream)
        {
            // set page contents flag
            PageContents = true;

            // add contents to page's list of contents
            Page.AddContents(this);

            // exit
            return;
        }