Пример #1
0
 /// <summary>
 /// Copy constructor (for use by the <see cref="RowTextContent"/> class)
 /// </summary>
 /// <param name="copy">The geometry to copy</param>
 protected RowTextGeometry(RowTextGeometry copy)
     : base(copy)
 {
     m_Row      = copy.m_Row;
     m_Template = copy.m_Template;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RowTextContent"/> class.
 /// </summary>
 /// <param name="copy">The copy.</param>
 internal RowTextContent(RowTextGeometry copy)
     : base(copy)
 {
     m_TableId    = copy.Row.Table.Id;
     m_TemplateId = copy.Template.Id;
 }