UseReportPageSize property

ron barlow 411 Reputation points
2020-09-23T20:44:26.663+00:00

Morning All

I'm fairly new to SSRS, apologies if this question is basic

Does anyone know where I find the UseReportPageSize porperty in SSRS 2016 or the properties on this article...

https://learn.microsoft.com/en-us/sql/reporting-services/pptx-device-information-settings?redirectedfrom=MSDN&view=sql-server-ver15

Thank you.
Ron

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
2,910 questions
0 comments No comments
{count} votes

Accepted answer
  1. Joyzhao-MSFT 15,576 Reputation points
    2020-10-02T08:13:56.99+00:00

    Hi,
    Has your issue been resolved?
    If you have any question, please feel free to let me know.
    Regards,
    Joy


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Joyzhao-MSFT 15,576 Reputation points
    2020-09-24T01:46:53.907+00:00

    Hi @ron barlow ,

    You could find device info setting in RSreportserver.config file, you could lookup for Render session in the file and add what you want to change like this :

    <Render>    
        <Extension Name="IMAGE (EMF)" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering">    
            <OverrideNames>    
                <Name Language="en-US">Image (EMF)</Name>    
            </OverrideNames>    
            <Configuration>    
                <DeviceInfo>    
                    <ColorDepth>32</ColorDepth>    
                    <DpiX>300</DpiX>    
                    <DpiY>300</DpiY>    
                    <OutputFormat>EMF</OutputFormat>    
                </DeviceInfo>    
            </Configuration>    
        </Extension>    
    </Render>   
    

    You could find detail in the doc article : Customize Rendering Extension Parameters in RSReportServer.Config
    Regards,
    Joy


    If the answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.