SaveUIConfigValues Method
- Last UpdatedNov 06, 2025
- 1 minute read
The SaveUIConfigValues() method saves a list of parameter/value pairs to the UI_Config table. It uses the Middleware UI_Config.SaveSectionParams() method to save the parameter/value pairs all at once.
'Declaration
Public Shared Sub SaveUIConfigValues( _
ByVal configID As String, _
ByVal screen As String, _
ByVal sectn As String, _
ByVal paramValues As ParameterValueArrayList _
)
public static void SaveUIConfigValues(
string configID,
string screen,
string sectn,
ParameterValueArrayList paramValues
)
Parameters
- configID
- Required. Holds the configuration ID of the user or object for which the list of parameter/value pairs is being stored.
- 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 table.