Canvas::RenderPage method¶
Render a page to the canvas using default options.
Overloads¶
RenderPage(Page) | Render a page to the canvas using default options. |
RenderPage(Page, string) | Render a page to the canvas using the specified options. |
RenderPage(Page, string, RenderPageProperties) | Render the page to the canvas with the specified properties. |
RenderPage(Page)¶
Prototype¶
void RenderPage(Page page)
void RenderPage(Page page) throws IGRException;
def RenderPage(self, page: Page) -> void
void RenderPage(Page page)
void RenderPage(Page page)
HRESULT RenderPage([in] Page* page)
Parameters¶
page: Page
: The page to be rendered
RenderPage(Page, string)¶
Prototype¶
void RenderPage(Page page, string options)
void RenderPage(Page page, string options) throws IGRException;
def RenderPage(self, page: Page, options: string) -> void
void RenderPage(Page page, const std::wstring& options)
void RenderPage(Page page, std::wstring options)
HRESULT RenderPage([in] Page* page, [in] BSTR options)
Parameters¶
page: Page
: The page to be rendered
options: string
: Canvas processing options to use when creating the new page.
RenderPage(Page, string, RenderPageProperties)¶
Prototype¶
void RenderPage(Page page, string options, RenderPageProperties renderPageProperties)
void RenderPage(Page page, string options, RenderPageProperties renderPageProperties) throws IGRException;
def RenderPage(self, page: Page, options: string, renderPageProperties: RenderPageProperties) -> void
void RenderPage(Page page, const std::wstring& options, RenderPageProperties renderPageProperties)
Parameters¶
page: Page
: The page to render.
options: string
: Canvas options to use when rendering page.
renderPageProperties: RenderPageProperties
: Render properties to use when rendering the page.
Sample Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
|