Table of Contents
This procedure clears all theme style user preferences for an application and theme.
Syntax
procedure clear_all_users_style( p_application_id IN NUMBER DEFAULT {current application id}, p_theme_number IN NUMBER DEFAULT {current theme id} );
Parameters
Table 33-1 CLEAR_ALL_USERS_STYLE Procedure
Parameter | Description |
---|---|
|
The application to clear all user theme style preferences for. |
|
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