any2Str Function
Dynamics AX 2009
Converts an anytype value to a str value.
str any2Str(anytype object)
static void any2StrExample(Args _args)
{
str myStr;
anytype a;
;
a = "Any to string";
myStr = any2Str(a);
Global::info(strFmt("%1 is output, from input of Any to string as a str value", myStr));
a = NoYes::Yes;
myStr = any2Str(a);
Global::info(strFmt("%1 is output, from input of NoYes::Yes as an enumeration", myStr));
}
/****Infolog Display
Message (09:08:46 am)
Any to string is output, from input of Any to string as a str value
1 is output, from input of NoYes::Yes as an enumeration
****/
Community Additions
ADD
Show: