TcxMRUFontNameAction Enum
Contains values returned by methods that manage the MRU font list.
Declaration
TcxMRUFontNameAction = (
mfaInvalidFontName,
mfaNone,
mfaMoved,
mfaAdded,
mfaDeleted
);
Members
| Name |
|---|
mfaInvalidFontName
|
mfaNone
|
mfaMoved
|
mfaAdded
|
mfaDeleted
|
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 |
|---|---|
| mfaInvalidFontName | There is no font available with this name. The AddMRUFontName and DelMRUFontName methods do nothing. |
| mfaNone | The font name is available but is not contained within the MRU list. |
| mfaMoved | 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. |
| mfaAdded | The font name was added to the MRU list. Represents the successful result of the AddMRUFontName method. |
| mfaDeleted | The font name was deleted from the MRU list. Represents the successful result of the DelMRUFontName method. |
See Also