type TChromiumFontOptions = class(TPersistent)
The TChromiumFontOptions properties are used to fill the TCefBrowserSettings record which is used during the browser creation.
| Protected | FStandardFontFamily: ustring; |
| Protected | FCursiveFontFamily: ustring; |
| Protected | FSansSerifFontFamily: ustring; |
| Protected | FMinimumLogicalFontSize: Integer; |
| Protected | FFantasyFontFamily: ustring; |
| Protected | FSerifFontFamily: ustring; |
| Protected | FDefaultFixedFontSize: Integer; |
| Protected | FDefaultFontSize: Integer; |
| Protected | FRemoteFontsDisabled: TCefState; |
| Protected | FFixedFontFamily: ustring; |
| Protected | FMinimumFontSize: Integer; |
| Public | constructor Create; virtual; |
| Protected | FStandardFontFamily: ustring; |
|
This item has no description. | |
| Protected | FCursiveFontFamily: ustring; |
|
This item has no description. | |
| Protected | FSansSerifFontFamily: ustring; |
|
This item has no description. | |
| Protected | FMinimumLogicalFontSize: Integer; |
|
This item has no description. | |
| Protected | FFantasyFontFamily: ustring; |
|
This item has no description. | |
| Protected | FSerifFontFamily: ustring; |
|
This item has no description. | |
| Protected | FDefaultFixedFontSize: Integer; |
|
This item has no description. | |
| Protected | FDefaultFontSize: Integer; |
|
This item has no description. | |
| Protected | FRemoteFontsDisabled: TCefState; |
|
This item has no description. | |
| Protected | FFixedFontFamily: ustring; |
|
This item has no description. | |
| Protected | FMinimumFontSize: Integer; |
|
This item has no description. | |
| Public | constructor Create; virtual; |
|
Constructor of TChromiumFontOptions | |
| Published | property StandardFontFamily : ustring read FStandardFontFamily write FStandardFontFamily; |
|
Standard font family name. | |
| Published | property FixedFontFamily : ustring read FFixedFontFamily write FFixedFontFamily; |
|
Fixed font family name. | |
| Published | property SerifFontFamily : ustring read FSerifFontFamily write FSerifFontFamily; |
|
Serif font family name. | |
| Published | property SansSerifFontFamily : ustring read FSansSerifFontFamily write FSansSerifFontFamily; |
|
SansSerif font family name. | |
| Published | property CursiveFontFamily : ustring read FCursiveFontFamily write FCursiveFontFamily; |
|
Cursive font family name. | |
| Published | property FantasyFontFamily : ustring read FFantasyFontFamily write FFantasyFontFamily; |
|
Fantasy font family name. | |
| Published | property DefaultFontSize : Integer read FDefaultFontSize write FDefaultFontSize default 0; |
|
Default font size. | |
| Published | property DefaultFixedFontSize : Integer read FDefaultFixedFontSize write FDefaultFixedFontSize default 0; |
|
Default fixed font size. | |
| Published | property MinimumFontSize : Integer read FMinimumFontSize write FMinimumFontSize default 0; |
|
Minimum font size. | |
| Published | property MinimumLogicalFontSize : Integer read FMinimumLogicalFontSize write FMinimumLogicalFontSize default 0; |
|
Minimum logical font size. | |
| Published | property RemoteFonts : TCefState read FRemoteFontsDisabled write FRemoteFontsDisabled default STATE_DEFAULT; |
|
Controls the loading of fonts from remote sources. Also configurable using the "disable-remote-fonts" command-line switch. | |