 | PdfPageTransformWithClip Method |
Transform the whole page with a specified matrix, then clip the page content region.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.100.2704
Syntaxpublic bool TransformWithClip(
FS_MATRIX matrix,
FS_RECTF clipRect
)
Public Function TransformWithClip (
matrix As FS_MATRIX,
clipRect As FS_RECTF
) As Boolean
public:
bool TransformWithClip(
FS_MATRIX^ matrix,
FS_RECTF clipRect
)
member TransformWithClip :
matrix : FS_MATRIX *
clipRect : FS_RECTF -> bool public boolean TransformWithClip(
FS_MATRIX matrix,
FS_RECTF clipRect
)
function TransformWithClip(matrix, clipRect);
Parameters
- matrix FS_MATRIX
- The transform matrix.
- clipRect FS_RECTF
- A rectangle page area to be clipped.
Return Value
BooleanTrue if success,else false.
RemarksThis function will transform the whole page, and would take effect to all the objects in the page.
See Also