Component
Preferences Component
13 language-reference entries were extracted for this component.
- Fnd_Pref_Display This method displays the Preferences window in a new process.
- Fnd_Pref_GetBoolean Returns the Boolean value of the preference with the specified name: $displayToolbar_b:=Fnd_Pref_GetBoolean ("Toolbar")
- Fnd_Pref_GetLongInt Returns the long integer value of the preference with the specified name: $timeout_i:=Fnd_Pref_GetLongint ("TimeoutInSeconds")
- Fnd_Pref_GetReal Returns the real number value of the preference with the specified name: $rate_r:=Fnd_Pref_GetReal ("ExchangeRate")
- Fnd_Pref_GetText Returns the text value of the preference with the specified name: $email_t:=Fnd_Pref_GetText ("EmailAddress")
- Fnd_Pref_GetWindow Window coordinates are always stored locally. There is no option to store this information as a server or shared preference.
- Fnd_Pref_Info Returns the requested information about the component. $version_t:=Fnd_Pref_Info ("version")
- Fnd_Pref_SetBoolean This routine stores a Boolean value. Fnd_Pref_SetBoolean ("Toolbar";$displayToolbar_b)
- Fnd_Pref_SetLongInt This routine stores a long integer value. Fnd_Pref_SetLongInt ("TimeoutInSeconds";$timeout_i)
- Fnd_Pref_SetReal This routine stores a real number value. Fnd_Pref_SetReal ("ExchangeRate";$rate_r)
- Fnd_Pref_SetText This routine stores a text value. Fnd_Pref_SetText ("EmailAddress";$email_t)
- Fnd_Pref_SetWindow Fnd_Pref_SetWindow (name; left; top; right; bottom)
- Fnd_Pref_UserName This routine gets and sets the current user name used by the Preferences component. When setting a server preference, the preference is stored with the current user’s name. By...