PdfRenderer.Page.ApplyEdit(FormEditRecord) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Applies a FormEditRecord to the PDF.
[Android.Runtime.Register("applyEdit", "(Landroid/graphics/pdf/models/FormEditRecord;)Ljava/util/List;", "", ApiSince=35)]
public System.Collections.Generic.IList<Android.Graphics.Rect> ApplyEdit(Android.Graphics.Pdf.Models.FormEditRecord editRecord);
[<Android.Runtime.Register("applyEdit", "(Landroid/graphics/pdf/models/FormEditRecord;)Ljava/util/List;", "", ApiSince=35)>]
member this.ApplyEdit : Android.Graphics.Pdf.Models.FormEditRecord -> System.Collections.Generic.IList<Android.Graphics.Rect>
Parameters
- editRecord
- FormEditRecord
the FormEditRecord to be applied
Returns
Rectangular areas of the page bitmap that have been invalidated by this action.
- Attributes
Remarks
Applies a FormEditRecord to the PDF.
Apps must call #render(Bitmap, Rect, Matrix, RenderParams) to render new bitmaps for the corresponding areas of the page.
For click type FormEditRecords, performs a click on FormEditRecord#getClickPoint()
For set text type FormEditRecords, sets the text value of the form widget.
For set indices type FormEditRecords, sets the FormEditRecord#getSelectedIndices() as selected and all others as unselected for the form widget indicated by the record.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.