Ejemplo n.º 1
0
        internal RPLTextBox(RPLItemProps rplElementProps)
            : base(rplElementProps)
        {
            RPLTextBoxProps rPLTextBoxProps = rplElementProps as RPLTextBoxProps;

            if (rPLTextBoxProps != null)
            {
                rPLTextBoxProps.Value = null;
                m_paragraphs          = null;
                m_paragraphCount      = 0;
            }
        }
Ejemplo n.º 2
0
 internal RPLTextBox()
 {
     m_rplElementProps            = new RPLTextBoxProps();
     m_rplElementProps.Definition = new RPLTextBoxPropsDef();
 }