Skip to main content
A newer version of this page is available. .

SvgImageBox.ItemAppearance Property

Provides access to the default item appearance settings.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.Utils.v19.2.dll

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.

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