///
/// Override the default behavior of the GetUIData(). The following code example uses the ${Table Name} table
/// and modifies the ${Field Control} field value to "new value".
///
public override void GetUIData()
{
// Call base.GetUIData()
base.GetUIData();
// Get ${Table Name} Record
${Table Name}Record myRec = this.GetRecord();
// Set ${Field Control} field value to new value string
myRec.${Field Control} = "new value";
}
|