RenderPageProperties interface¶
The RenderPageProperties interface provides additional information for rendering a page to a canvas.
This interface can be created directly.
RenderPageProperties::AddFormValue method | AddFormValue adds a new FormKeyValue to the RenderPageProperties |
RenderPageProperties::AddRedaction method | Add a redaction to the list of redactions. |
RenderPageProperties::GetFirstFormValue method | GetFirstFormValue returns the first form value or NULL if there are no form values. |
RenderPageProperties::GetFormValue method | GetFormValue returns the form value at the specified index |
RenderPageProperties::GetFormValueCount method | GetFormValueCount returns the number of form values stored in the RenderPageProperties. |
RenderPageProperties::GetNextFormValue method | GetNextFormValue returns the first form value or NULL if there are no form values. |
Sample code¶
var RenderPageProperties = new RenderPageProperties();
RenderPageProperties.AddFormValue("FormKey", "NewFormValue", true);
canvas.RenderPage(page, "", RenderPageProperties)