Skip to content

Column_Combo_Description_Value - dbGrid

Called to determine what should be displayed in the combo form

Type: Event
Return Data Type: String

Parameters

Parameter Type Description
iColumn Integer The column number (0-based)
eMode Integer Display mode. Valid values:ConstantMeaning
sDescVal String Description value
sDataVal String Data (code) value

Syntax

Function Column_Combo_Description_Value Integer iColumn Integer eMode String sDescVal String sDataVal Returns String

Description

Called to determine what should be displayed in the combo form. By default, it properly creates a display value based on Column_Combo_Code_Display_Mode. This can be used as an augmentation point to customize the display. It must return the value that will be displayed in the combo list.

To augment this function for augmenation:

Function Column_Combo_Description_Value integer iColumn integer eMode string sDescVal string sDataVal returns String
    String sReturnValue

    // augment here

    Forward Get Column_Combo_Description_Value iColumn eMode sDescVal sDataVal to sReturnValue

    // augment here

    Function_Return sReturnValue
End_Function  // Column_Combo_Description_Value

Return Value

Returns the value to be displayed.