在.Rdlc上的参数文本上设置字体大小

时间:2013-01-04 13:41:53

标签: c# asp.net reportviewer rdlc

我有这个问题。

我在rdlc中有ASP.NET报告。 我有一个参数文本,显示出来。

我没有问题 - 问题是该参数中文本的大小。 我有一个文本框,显示的值是

"Reporte de Señas " + Parameters!NombreTipoReporte.Value

文字是正确的,但报告显示正常尺寸(9磅)。 我将文本框中的格式更改为24pt,但效果不佳 - 仍然可以在9磅处看到它。

<Textbox Name="NombreTipoReporte">
          <CanGrow>true</CanGrow>
          <CanShrink>true</CanShrink>
          <KeepTogether>true</KeepTogether>
          <Paragraphs>
            <Paragraph>
              <TextRuns>
                <TextRun>
                  <Value>= "Reporte de Señas " + Parameters!NombreTipoReporte.Value</Value>
                  <Style>
                    <FontSize>24pt</FontSize>
                  </Style>
                </TextRun>
              </TextRuns>
              <Style />
            </Paragraph>
          </Paragraphs>
          <rd:DefaultName>NombreTipoReporte</rd:DefaultName>
          <Top>0.7155cm</Top>
          <Left>0.28258cm</Left>
          <Height>1.64811cm</Height>
          <Width>14.59083cm</Width>
          <ZIndex>3</ZIndex>
          <Style>
            <FontSize>24pt</FontSize>
            <Border>
              <Style>None</Style>
            </Border>
            <PaddingLeft>2pt</PaddingLeft>
            <PaddingRight>2pt</PaddingRight>
            <PaddingTop>2pt</PaddingTop>
            <PaddingBottom>2pt</PaddingBottom>
          </Style>
        </Textbox>

为什么显示正常尺寸?在设计视图中,我可以看到24磅的字体大小。我从设计视图中设置了这个尺寸,但也没有工作。

当我打开网页时,我会在9pt看到文字。

1 个答案:

答案 0 :(得分:0)

您是否尝试修改参数占位符的属性,而不是文本框的属性

只需点击参数占位符(带有[@parameterName]的那个),右键单击它,属性,在左侧选择字体,然后更改大小。