Change the Standard Font in RDLC Report

sb_sb_ Member Posts: 5
edited 2012-03-08 in NAV Three Tier
Hi

How can i change the Standard Font in a RDLC Layout.

In the Design(Report 405) i see Arial as the Font.
20120307-154012-71.jpgbildercache_80x15.gif

In the whole Report.rdlc File is never a FontFamily definied.
                  <Height>0.45cm</Height>
                  <TableCells>
                    <TableCell>
                      <ReportItems>
                        <Textbox Name="textbox103">
                          <Style>
                            <FontSize>9pt</FontSize>
                            <PaddingBottom>1pt</PaddingBottom>
                            <PaddingLeft>2pt</PaddingLeft>
                            <PaddingRight>2pt</PaddingRight>
                            <PaddingTop>1pt</PaddingTop>
                          </Style>
                          <Value>=Fields!VendAddr_1_.Value</Value>
                          <ZIndex>10</ZIndex>
                        </Textbox>
                      </ReportItems>
                    </TableCell>
                  </TableCells>
                </TableRow>

If I change the FontFamily in the Designer, it appears in the File.

<FontFamily>Calibri</FontFamily>

But where is Arial defined, and how can i change it generally?

Thank you.

Comments

  • deV.chdeV.ch Member Posts: 543
    When nothing is defined then it's Arial... that must be the logic of the report viewer/designer.
    So you have to change it for every textbox. but thats pritty simple, mark everything and then go to the top where you can specify font and type in what you want.
Sign In or Register to comment.