PDFDrawSetPageTransparent Method |
Sets the page color to transparent. By default, PDFDraw assumes that the page is imposed directly on an opaque white surface. Some applications may need to impose the page on a different backdrop. In this case any pixels that are not covered during rendering will be transparent.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public void SetPageTransparent(
bool isTransparent
)
Public Sub SetPageTransparent (
isTransparent As Boolean
)
public:
virtual void SetPageTransparent(
[InAttribute] bool isTransparent
) sealed
function SetPageTransparent(isTransparent);
Parameters
- isTransparent
- Type: SystemBoolean
If true, page's backdrop color will be transparent. If false, the page's backdrop will be a opaque white.
Remarks
If true, page's backdrop color will be transparent. If false, the page's backdrop will be a opaque white.
See Also