ApplicationSettings: IWinApplicationSettings;
The ApplicationSettings property returns formatting settings used in the current application.
NOTE. Formatting settings can be changed only in PROGNOZ 5 versions. Foresight Analytics Platform uses a predefined formatting scheme, formatting settings are read-only.
To execute the example, add a link to the Ui system assembly.
Sub UserProc;
Var
Settings: IWinApplicationSettings;
Begin
// Get access to formatting settings
Settings := WinApplication.ApplicationSettings;
// Set tab formatting style
Settings.TabStyles := WindowTabStyle.Chamfered;
End Sub UserProc;
After executing the example, the tab formatting style will be changed.
See also: