コード例 #1
0
 internal float MeasureFullTextBoxHeight(Microsoft.ReportingServices.Rendering.RichText.TextBox textBox, FlowContext flowContext, out float contentHeight)
 {
     if (m_bitsGraphics == null)
     {
         CreateGraphics();
     }
     return(Microsoft.ReportingServices.Rendering.RichText.TextBox.MeasureFullHeight(textBox, m_bitsGraphics, FontCache, flowContext, out contentHeight));
 }
コード例 #2
0
            internal float MeasureTextBoxHeight(Microsoft.ReportingServices.Rendering.RichText.TextBox textBox, FlowContext flowContext)
            {
                if (m_bitsGraphics == null)
                {
                    CreateGraphics();
                }
                float height = 0f;

                LineBreaker.Flow(textBox, m_bitsGraphics, FontCache, flowContext, keepLines: false, out height);
                return(height);
            }
コード例 #3
0
 internal float MeasureFullTextBoxHeight(Microsoft.ReportingServices.Rendering.RichText.TextBox textBox, FlowContext flowContext, out float contentHeight)
 {
     return(m_common.MeasureFullTextBoxHeight(textBox, flowContext, out contentHeight));
 }