| PdfControlGetWidget Method |
Find the page on which the given control is located and return it in the form of the corresponding widget.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public PdfWidgetAnnotation GetWidget(
PdfPage page = null
)
Public Function GetWidget (
Optional page As PdfPage = Nothing
) As PdfWidgetAnnotation
public:
PdfWidgetAnnotation^ GetWidget(
PdfPage^ page = nullptr
)
member GetWidget :
?page : PdfPage
(* Defaults:
let _page = defaultArg page null
*)
-> PdfWidgetAnnotation
public PdfWidgetAnnotation GetWidget(
PdfPage page = null
)
function GetWidget(page);
Parameters
- page PdfPage (Optional)
- The page where the widget is located. If no page is specified, the widget is searched on all pages of the document.
Return Value
PdfWidgetAnnotationAn instance of PdfWidgetAnnotation class that represents the found widget, or null if nothing was found.
See Also