Skip to main content
All docs
V25.1
  • SvgImageBox.ItemAppearance Property

    Provides access to the default item appearance settings.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.Utils.v25.1.dll

    NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

    Declaration

    public SvgImageItemAppearanceCollection ItemAppearance { get; }

    Property Value

    Type Description
    SvgImageItemAppearanceCollection

    The default item appearance settings.

    Remarks

    You can use the following properties to customize items’ appearance settings:

    • SvgImageBox.ItemAppearance - Allows you to specify the default appearance settings for all image items.
    • SvgImageItem.Appearance - Allows you to customize the appearance of individual image items. These settings, if set, override the default appearance settings.

    Example

    The following code specifies the Green color as the default background for all image items.

    image

    svgImageBox1.ItemAppearance.Normal.FillColor = Color.Green;
    
    See Also