PVOID_TO_DECSTR

PVOID_TO_DECSTR 1:

The function converts the value of a pointer variable of type PVOID into a decimal string (basis 10).

PVOID_TO_DECSTR 2: Return value

Name

Type

Description

PVOID_TO_DECSTR

T_MaxString

 

PVOID_TO_DECSTR 3: Inputs

VAR_INPUT
    in         : PVOID;
    iPrecision : INT;
END_VAR

Name

Type

Description

in

PVOID

The pointer variable to be converted.

iPrecision

INT

Minimum number of displayed digits. If the actual number of significant digits is less than the iPrecision parameter, the resulting string is filled with zeros from the left. If the number of significant digits is greater than the iPrecision parameter, the resulting string is not truncated! If the iPrecision parameter and the in parameter have the value zero, the resulting string is an empty string.

Example:

PROGRAM MAIN
VAR
    s1   : STRING;
    s2   : STRING;
    s3   : STRING;
    s4   : STRING;
    s5   : STRING;
    s6   : STRING;
    nCnt : WORD;
    pCnt : PVOID := 0;
END_VAR
pCnt := 0;
s1   := PVOID_TO_DECSTR( pCnt, 0 );
s2   := PVOID_TO_DECSTR( pCnt, 1 );
s3   := PVOID_TO_DECSTR( pCnt, 16 );

pCnt := ADR( nCnt );
s4   := PVOID_TO_DECSTR( pCnt, 0 );
s5   := PVOID_TO_DECSTR( pCnt, 1 );
s6   := PVOID_TO_DECSTR( pCnt, 16 );

The result:

s1 = ''

s2 = '0'

s3 = '0000000000000000'

s4 = '2279473749' (may vary)

s5 = '2279473749' (may vary)

s6 = '0000002279473749' (may vary)

Requirements

Development environment

Target platform

PLC libraries to be integrated (category group)

TwinCAT v3.1.0

PC or CX (x86, x64, Arm®)

Tc2_Utilities (System)