The QNdefNfcTextRecord class provides an NFC RTD-Text More...
#include <QNdefNfcTextRecord>
Inherits: QNdefRecord.
This class was introduced in Qt Mobility 1.2.
enum | Encoding { Utf8, Utf16 } |
Encoding | encoding () const |
QString | locale () const |
void | setEncoding ( Encoding encoding ) |
void | setLocale ( const QString & locale ) |
void | setText ( const QString text ) |
QString | text () const |
The QNdefNfcTextRecord class provides an NFC RTD-Text
RTD-Text encapsulates a user displayable text record.
This enum describes the text encoding standard used.
Constant | Value | Description |
---|---|---|
QNdefNfcTextRecord::Utf8 | 0 | The text is encoded with UTF-8. |
QNdefNfcTextRecord::Utf16 | 1 | The text is encoding with UTF-16. |
Returns the encoding of the contents.
See also setEncoding().
Returns the locale of the text record.
See also setLocale().
Sets the enconding of the contents to encoding.
See also encoding().
Sets the locale of the text record to locale.
See also locale().
Sets the contents of the text record to text.
See also text().
Returns the contents of the text record as a string.
See also setText().