 | PdfiumFPDFARRAY_GetStringAt Method |
Gets the ANSI string at a given index.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static string FPDFARRAY_GetStringAt(
IntPtr handle,
int index,
Encoding enc = null
)
Public Shared Function FPDFARRAY_GetStringAt (
handle As IntPtr,
index As Integer,
Optional enc As Encoding = Nothing
) As String
public:
static String^ FPDFARRAY_GetStringAt(
IntPtr handle,
int index,
Encoding^ enc = nullptr
)
static member FPDFARRAY_GetStringAt :
handle : IntPtr *
index : int *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> string
public static String FPDFARRAY_GetStringAt(
IntPtr handle,
int index,
Encoding enc = null
)
Patagames.Pdf.Pdfium.FPDFARRAY_GetStringAt = function(handle, index, enc);
Parameters
- handle IntPtr
- Handle to Array object.
- index Int32
- An integer index that is greater than or equal to 0 and less than the value returned by FPDFARRAY_GetCount(IntPtr).
- enc Encoding (Optional)
- The encoding used to decode an ANSI string into a String. if Null DefaultAnsiEncoding is used.
Return Value
StringA string value currently at this index or null if any error is occured.
See Also