RemoveTextArea Method (GdPicturePDF)
Removes all text contained in specified area on currently selected page of the loaded PDF document.
public function RemoveTextArea(
: Single;
: Single;
: Single;
: Single
): GdPictureStatus;
public function RemoveTextArea(
: float,
: float,
: float,
: float
) : GdPictureStatus;
'Declaration
Public Function RemoveTextArea( _
ByVal As Single, _
ByVal As Single, _
ByVal As Single, _
ByVal As Single _
) As GdPictureStatus
Parameters
- Left
- The horizontal (X) coordinate of the closest point to the currently defined origin, of the area where text shall be removed.
The value is expressed in the current units specified by the SetMeasurementUnit method .
- Top
- The vertical (Y) coordinate of the closest point to the currently defined origin, of the area where text shall be removed.
The value is expressed in the current units specified by the SetMeasurementUnit method and it is related to the current page.
- Width
- The width of the area where text shall be removed, expressed in the current units specified by the SetMeasurementUnit method.
- Height
- The height of the area where text shall be removed, expressed in the current units specified by the SetMeasurementUnit method.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.
How to remove text from area on page in the PDF document.
Using gdpicturePDF As New GdPicturePDF
gdpicturePDF.LoadFromFile("input.pdf")
gdpicturePDF.SetOrigin(PdfOrigin.PdfOriginTopLeft)
gdpicturePDF.SelectPage(2)
gdpicturePDF.RemoveTextArea(100, 120, 30, 70)
gdpicturePDF.SaveToFile("output.pdf")
End Using
using (GdPicturePDF gdpicturePDF = new GdPicturePDF())
{
gdpicturePDF.LoadFromFile("input.pdf");
gdpicturePDF.SetOrigin(PdfOrigin.PdfOriginTopLeft);
gdpicturePDF.SelectPage(2);
gdpicturePDF.RemoveTextArea(100, 120, 30, 70);
gdpicturePDF.SaveToFile("output.pdf");
}