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

TdxMapItemStyleValue Enum

Enumerates individual flags corresponding to all appearance settings applicable to a map item state.

#Declaration

Delphi
TdxMapItemStyleValue = (
    mcsvColor,
    mcsvBorderWidth,
    mcsvBorderColor,
    mcsvFont,
    mcsvTextColor,
    mcsvTextGlowColor
);

#Members

Name
mcsvColor
mcsvBorderWidth
mcsvBorderColor
mcsvFont
mcsvTextColor
mcsvTextGlowColor

#Remarks

The flags listed in the table below are added automatically to the map item state style’s AssignedValues property value in response to any change made to the corresponding appearance setting. Absence of a flag indicates that the map control uses the default value of the corresponding property instead.

Value Description
mcsvColor Specifies that the control uses the custom TdxMapItemStyle.Color property value as the map item’s background color
mcsvBorderWidth The control uses the custom TdxMapItemStyle.BorderWidth property value as the map item’s border width
mcsvBorderColor The control uses the custom TdxMapItemStyle.BorderColor property value as the map item’s border color.
mcsvFont The control uses the custom TdxMapItemStyle.Font property value as the title text‘s font settings, except for text and text glow effect colors.
mcsvTextColor The control uses the custom TdxMapItemStyle.TextColor property value as the title text’s color.
mcsvTextGlowColor The control uses the custom TdxMapItemStyleTextGlowColor property value as the title text’s glow effect color.

The TdxMapItemStyleValues type references the TdxMapItemStyleValue type.

See Also