Skip to content

Augmenting the File_Field and File Messages

If you need to augment one of these methods, you should always augment the Field_ version of the message in the appropriate owner class or object. Never augment the File_Field_ version of a message.

Function Field_Current_Value integer iField Returns String
    String sValue
    Forward Get Field_Current_Value iField to sValue
    :
    :   // do some custom augmentation
    :
    Function_Return sValue
End_Function

Note that when you forward the message, you just forward the parameter and you do not use the FIELD keyword.

See Also