Monday 4 March 2013

Microsoft Dynamics AX 2012 R2 - corrFlagGet Function


Retrieves the state of the correction flag for a real number.


Function

  • int corrFlagGet(real arg)

Parameters

  • Parameter: arg
  • Description: The flag for which to retrieve the state.

Return Value

  • A non-zero value if the flag is set; zero if it is cleared.

Example

  • X++
The following example displays 1.
static void corrFlagGetExample(Args _args)
{
    real rr;

    rr = corrFlagSet(0.36,2);
    print(corrFlagGet(rr));
}

My above blog is based on Microsoft's Official information.

I hope this blog about 'Microsoft Dynamics AX 2012 R2 - corrFlagGet Function' was informative. Please feel free to leave your comments.

No comments:

Post a Comment