Description
-
Decodes file encoded with Quoted-Printable encoding.
Return Type
-
A String value. Holds text that is decoded.
Syntax
-
object.QuotedPrintableText InText
The QuotedPrintableText Method syntax has these parts:
object |
An expression evaluating to an object
of type Decoder. |
InText |
Required. A String value. Holds text that should
be decoded. |
Remarks
-
QuotedPrintableText method will decode text specified in
InText parameter and return it as string
variable. QUOTED-PRINTABLE
decoding will be used, no matter if InText is encoded using
same algorithm or not. If InText is invalid (for example
different encoding was used to create it), unexpected results may occur, but
most probably zero-len string will be returned.
|