Exemplo n.º 1
0
        /// -----------------------------------------------------------------------------------
        /// <summary>
        /// Initializes a new instance of the <see cref="ScrVerseSet"/> class, for the given
        /// paragraph.
        /// </summary>
        /// <param name="para">given paragraph</param>
        /// -----------------------------------------------------------------------------------
        public ScrVerseSet(ScrTxtPara para)
        {
            if (para == null)
            {
                throw new ArgumentNullException("para");
            }

            m_para    = para;
            m_address = new ParaNodeMap(para);
            m_para.GetBCVRefAtPosition(0, out m_startRef, out m_endRef);
        }