Wednesday, January 5, 2011

LongTranslateValue And ShortTranslateValue

The following code is used to get the Long Translate Value of the translate field.
 
/* LongTranslateValue */
Local Any &VALUE;
Local Field &MYFIELD;

&MYFIELD = GetField();
&VALUE = &MYFIELD.LongTranslateValue;
If ALL(&VALUE) Then
   /* do processing */
End-if;
 
Note: Similarly to get the Short Translate Value we can use ShortTranslateValue property.

0 comments:

Post a Comment