| PdfTypeDictionarySetStringAt Method |
Sets the ANSI string at the specified key.
Namespace: Patagames.Pdf.Net.BasicTypesAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.89.2704
Syntax public void SetStringAt(
string key,
string text,
Encoding enc = null
)
Public Sub SetStringAt (
key As String,
text As String,
Optional enc As Encoding = Nothing
)
public:
void SetStringAt(
String^ key,
String^ text,
Encoding^ enc = nullptr
)
member SetStringAt :
key : string *
text : string *
?enc : Encoding
(* Defaults:
let _enc = defaultArg enc null
*)
-> unit
public void SetStringAt(
String key,
String text,
Encoding enc = null
)
function SetStringAt(key, text, enc);
Parameters
- key String
- The key of the element to set.
- text String
- The string which should be setted at the specified key.
- enc Encoding (Optional)
- The encoding used to encode the text into an ANSI string. if Null DefaultAnsiEncoding is used.
Exceptions See Also