Click or drag to resize

PdfWebControlRenderTextOnDemand Property

Gets or sets a value indicating whether the server should extract and render PDF text as needed by PdfWebControl instances.

Namespace:  RadPdf.Web.UI
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public bool RenderTextOnDemand { get; set; }

Property Value

Type: Boolean
If true the server should extract and render PDF text for use by the GUI on demand; otherwise, if false the server will extract and render text upfront. The default value is true.
Remarks

To have an effect, this property must be set before CreateDocument(String, Byte) is called.

This property will be ignored if AllowFindMatchingPdf is true and the PDF referenced by CreateDocument(String, Byte) was previously loaded. (The value of this property when the PDF was originally loaded by CreateDocument(String, Byte) will instead be used)

This property will be ignored if RenderOnDemand is false.

RAD PDF prior to version 2.32 did not support this feature. All documents created with version 2.31 and earlier will behave as if this property is false.

See Also