Share via


TaxReport770Writer_IT.writeNonPosNx Method [AX 2012]

Writes the non-positional numeric field formatted as numeral (no decimals, special rounding rules).

Syntax

Note

The syntax of this method varies based on the version of Microsoft Dynamics AX that you are using.

  Microsoft Dynamics AX 2012 R3
          public int writeNonPosNx(
            str _code, 
            real _num, 
           [int _width])

  Microsoft Dynamics AX 2012 R2 (SYS)
          public void writeNonPosNx(
            str _code, 
            int64 _num, 
           [int _x])

  Microsoft Dynamics AX 2012 Feature Pack (SYS)
          public void writeNonPosNx(
            str _code, 
            int64 _num, 
           [int _x])

  Microsoft Dynamics AX 2012 (FPK)
          public void writeNonPosNx(
            str _code, 
            int64 _num, 
           [int _x])

  Microsoft Dynamics AX 2012 (SYS)
          public void writeNonPosNx(
            str _code, 
            int64 _num, 
           [int _x])

Run On

Called

Parameters

  • _code
    Type: str
    The field code.
  • _num
    Type: real
    The field value.
  • _width
    Type: int
    The width of the field; optional.

Return Value

Type: int
The number of non-positional fields that were actually written; zero if none.

See Also

Reference

TaxReport770Writer_IT Class