 | PdfPageTransformWithClip Method |
Transform the whole page with a specified matrix, then clip the page content region.
Namespace:
Patagames.Pdf.Net
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.81.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.81.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
- Type: Patagames.PdfFS_MATRIX
The transform matrix. - clipRect
- Type: Patagames.PdfFS_RECTF
A rectangle page area to be clipped.
Return Value
Type:
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