 | PdfTypeArrayAddString Method |
Adds the ansi string to the Array.
Namespace: Patagames.Pdf.Net.BasicTypesAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic void AddString(
string text,
Encoding enc = null
)
Public Sub AddString (
text As String,
Optional enc As Encoding = Nothing
)
public:
void AddString(
String^ text,
Encoding^ enc = nullptr
)
member AddString :
text : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
public void AddString(
String text,
Encoding enc = null
)
function AddString(text, enc);
Parameters
- text String
- The string which should be added at the end of Array.
- enc Encoding (Optional)
- The encoding used to encode the text into an ANSI string. if Null DefaultAnsiEncoding is used.
See Also