Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxMRUFontNameAction Enum

Contains values returned by methods that manage the MRU font list.

#Declaration

Delphi
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