Void AssignUnicodeWithLength ( const ushort *s, ulong strlength )

From FM Plugin Wikipedia
Jump to: navigation, search

Assigns the specified text to a FileMaker TextAutoPtr from a ushort string of characters, with the length as the second parameter


static const ushort mytext[4] = { 0x0041, 0x0042, 0x0043, 0x0044 };

fmx::TextAutoPtr	  origText;
origText->Assign( mytext, 4 );