ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / NFC functions
  • Properties specific to nfcTag variables
  • Main remarks
  • Reinitializing the variable
  • List of functions that use the nfcTag variables
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The nfcTag type is used to define the advanced characteristics of an NFC tag (Near Field Communication). The characteristics of this NFC Tag can be defined and modified using various WLanguage properties.
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
Android
// Ecrit une URL dans un tag NFC
tag is nfcTag
url is nfcData
url.Type = nfcURI
url.Content = "www.pcsoft.com"
Add(tag.Data, url)
NFCWriteTag(tag)
IF ErrorOccurred THEN
	Error("Echec de l'écriture sur le tag NFC.", ErrorInfo())
END
Android
tag is nfcTag = NFCReadTag()
IDTag is string = StringFormat(BufferToHexa(tag.Identifier), ...
				ccUpCase + ccIgnorePunctuationAndSpace)
Properties

Properties specific to nfcTag variables

The following properties can be used to handle an NFC tag:
Property nameType usedEffect
DataArray of nfcDataArray containing:
  • the data read in an NFC tag (after a call to NFCReadTag).
  • Android the data to write into an NFC tag (after a call to NFCWriteTag).
IdentifierBinary bufferIdentifier of the NFC tag (corresponds to "hardware identifier" of a badged tag). This identifier is automatically filled after a read operation.
This property is available in read-only.
iPhone/iPad This information is not available.
MaxSizeIntegerMaximum size (in bytes) of the data that can be stored in the NFC tag.
This property is automatically filled after a read operation.
This property is available in read-only.
iPhone/iPad This property is not available.
ReadOnlyBoolean
  • True if the tag is read-only,
  • False if it is not protected in write mode.
During a read operation, this property is automatically filled.
During a write operation, if the ReadOnly property is set to True, the tag will be automatically write-protected: it will no longer be possible to modify its data.. This operation is irreversible. Some NFC tags do not support this mode. For more details, see the help about NFCWriteTag.
iPhone/iPad This property always corresponds to True. Indeed, only the read operation is managed.
TypeInteger constantType of tag corresponding to one of the following values:
  • nfcUnknown unknown type. Default value if no read operation was performed with the tag.
  • nfcMifareClassic: NFC Mifare Classic
  • nfcType1 NFC Forum Type 1
  • nfcType2 NFC Forum Type 2
  • nfcType3 NFC Forum Type 3
  • nfcType4 NFC Forum Type 4
The type of tag is automatically filled after a read operation.
This property is available in read-only.
iPhone/iPad This property is not available.
Remarks

Main remarks

  • The NFC functions support the tags corresponding to the standardized types 1 to 4 defined by the NFC Forum (http://www.nfc-forum.org/specs/spec_list/) and they can only read and write data encoded to the NDEF format (NFC Data Exchange Service).
  • The NFC functions cannot be used in the simulator or in the emulator.
iPhone/iPad Only the read operation is managed.

Reinitializing the variable

You can use VariableReset to reset the content of a variable of type nfcTag.

List of functions that use the nfcTag variables

NFCReadTagStarts reading an NFC tag or enables the detection of NFC tags for the current window.
NFCSendTagSends an NFC tag to another device.
NFCWriteTagStarts writing data to an NFC tag.
Minimum version required
  • Version 18
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help