 | PdfiumFORM_GetSelectedText Method |
Get the starting index and length of the selected text in the widget that has input focus.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FORM_GetSelectedText(
IntPtr form_handle,
out int startIndex,
out int len
)
Public Shared Sub FORM_GetSelectedText (
form_handle As IntPtr,
<OutAttribute> ByRef startIndex As Integer,
<OutAttribute> ByRef len As Integer
)
public:
static void FORM_GetSelectedText(
IntPtr form_handle,
[OutAttribute] int% startIndex,
[OutAttribute] int% len
)
static member FORM_GetSelectedText :
form_handle : IntPtr *
startIndex : int byref *
len : int byref -> unit
public static void FORM_GetSelectedText(
IntPtr form_handle,
/** @attribute OutAttribute */ /** @ref */int startIndex,
/** @attribute OutAttribute */ /** @ref */int len
)
Patagames.Pdf.Pdfium.FORM_GetSelectedText = function(form_handle, startIndex, len);
Parameters
- form_handle IntPtr
- Handle to the form fill module. Returned by {0} Overload.
- startIndex Int32
- The starting index of the selected text.
- len Int32
- The length of the selected text.
RemarksApplicable only to input field widgets.
See Also