TcxMRUFontNameAction Enum
In This Article
Contains values returned by methods that manage the MRU font list.
#Declaration
Delphi
TcxMRUFontNameAction = (
mfaInvalidFontName,
mfaNone,
mfaMoved,
mfaAdded,
mfaDeleted
);
#Members
Name |
---|
mfa
|
mfa
|
mfa
|
mfa
|
mfa
|
#Remarks
The TcxMRUFontNameAction is the enumeration type providing return values for methods managing the MRU list (AddMRUFontName and DelMRUFontName). These methods require a font name parameter and the following return values relate to it:
Option | Meaning |
---|---|
mfa |
There is no font available with this name. The Add |
mfa |
The font name is available but is not contained within the MRU list. |
mfa |
The font name now occupies a different position within the MRU list. This value is returned when the font name already exists within the MRU list or when the font name is added to a fully populated MRU list. |
mfa |
The font name was added to the MRU list. Represents the successful result of the Add |
mfa |
The font name was deleted from the MRU list. Represents the successful result of the Del |
See Also