//
        // .ctor
        //

        #region public PDFEventList(Scryber.Components.PDFComponent owner)

        /// <summary>
        /// Creates a new instance of the Event List for the specified component
        /// </summary>
        /// <param name="owner"></param>
        public PDFEventList(Scryber.Components.Component owner)
        {
            _owner = owner;
        }
 /// <summary>
 /// Disposes of this event list
 /// </summary>
 public void Dispose()
 {
     _head  = null;
     _owner = null;
 }