Back to Devexpress

TcxMRUFontNameAction Enum

vcl-cxfontnamecombobox-fd47839c.md

latest1.9 KB
Original Source

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:

OptionMeaning
mfaInvalidFontNameThere is no font available with this name. The AddMRUFontName and DelMRUFontName methods do nothing.
mfaNoneThe font name is available but is not contained within the MRU list.
mfaMovedThe 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.
mfaAddedThe font name was added to the MRU list. Represents the successful result of the AddMRUFontName method.
mfaDeletedThe font name was deleted from the MRU list. Represents the successful result of the DelMRUFontName method.

See Also

cxFontNameComboBox Unit