57.2 CLEAR_USER_STYLE Procedure

This procedure clears the theme style user preference for user and application.

Syntax

APEX_THEME.CLEAR_USER_STYLE (
    p_application_id IN NUMBER   DEFAULT {current application id},
    p_user           IN VARCHAR2 DEFAULT {current user},   
    p_theme_number   IN NUMBER   DEFAULT {current theme number} );

Parameters

Parameter Description
p_application_id The application ID. Default is the current application.
p_user Username to set the user style preference for.
p_theme_number The theme number to clear the theme style user preference.

Example

The following example clears the theme style user preference for the ADMIN user in application 100 and theme 42.

apex_theme.clear_user_style(
    p_application_id => 100,
    p_user           => 'ADMIN',
    p_theme_number   => 42
);