Example #1
0
 internal override void UpdateRenderReportItem(Microsoft.ReportingServices.ReportRendering.ReportItem renderReportItem)
 {
     base.UpdateRenderReportItem(renderReportItem);
     m_renderTextBox = (Microsoft.ReportingServices.ReportRendering.TextBox)m_renderReportItem;
     if (m_actionInfo != null)
     {
         m_actionInfo.Update(m_renderTextBox.ActionInfo);
     }
     if (m_paragraphCollection != null && m_paragraphCollection[0] != null)
     {
         m_paragraphCollection[0].UpdateRenderReportItem(renderReportItem);
     }
 }
Example #2
0
 internal TextBox(IDefinitionPath parentDefinitionPath, int indexIntoParentCollectionDef, bool inSubtotal, Microsoft.ReportingServices.ReportRendering.TextBox renderTextBox, RenderingContext renderingContext)
     : base(parentDefinitionPath, indexIntoParentCollectionDef, inSubtotal, renderTextBox, renderingContext)
 {
     m_renderTextBox = renderTextBox;
 }