SaveUIConfigDefaultValues Method
- Last UpdatedNov 06, 2025
- 1 minute read
The SaveUIConfigDeafultValues() method saves a list of parameter/value pairs to the UI_Config_Default table. It uses the Middleware UI_Config_Default.SaveSectionParams() method to save the parameter/value pairs all at once.
'Declaration
Public Shared Sub SaveUIConfigDefaultValues( _
ByVal screen As String, _
ByVal sectn As String, _
ByVal paramValues As ParameterValueArrayList _
)
public static void SaveUIConfigDefaultValues(
string screen,
string sectn,
ParameterValueArrayList paramValues
)
Parameters
- screen
- Required. Holds the screen from which the list of parameter/value pairs was taken.
- sectn
Required. Holds the section to which the list of parameter/value pairs belongs.
- paramValues
- Required. Holds the array of parameter/value pairs being saved to the UI_Config_Default table.