__init__ constructor
Leave feedback
On this page
Initializes a new PageAreaFilter for redacting a specific area.
def __init__(self, top_left, size):
...
| Parameter | Type | Description |
|---|---|---|
| top_left | System.Drawing.Point |
Top-left area coordinates. |
| size | System.Drawing.Size |
Area size and color. |
from groupdocs.redaction.redactions import PageAreaFilter
from groupdocs.pydrawing import Point, Size
point = Point(0, 100)
size = Size(200, 150)
filter = PageAreaFilter(point, size)
- class
PageAreaFilter
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.