57.1 CLEAR_ALL_USERS_STYLE Procedure
This procedure clears all theme style user preferences for an application and theme.
Syntax
APEX_THEME.CLEAR_ALL_USERS_STYLE (
p_application_id IN NUMBER DEFAULT {current application ID},
p_theme_number IN NUMBER DEFAULT {current theme ID} );
Parameters
Parameter | Description |
---|---|
p_application_id |
The application ID. Default is the current application. |
p_theme_number |
The theme number to clear all theme style user preferences for. |
Example
The following example clears the all theme style user preferences for theme 42
in application 100
.
apex_theme.clear_all_users_style(
p_application_id => 100,
p_theme_number => 42
);
Parent topic: APEX_THEME