windowsforms-devexpress-dot-xtraeditors-dot-svgimagebox-945a743f.md
Provides access to the default item appearance settings.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
public SvgImageItemAppearanceCollection ItemAppearance { get; }
Public ReadOnly Property ItemAppearance As SvgImageItemAppearanceCollection
| Type | Description |
|---|---|
| SvgImageItemAppearanceCollection |
The default item appearance settings.
|
You can use the following properties to customize items’ appearance settings:
The following code specifies the Green color as the default background for all image items.
svgImageBox1.ItemAppearance.Normal.FillColor = Color.Green;
SvgImageBox1.ItemAppearance.Normal.FillColor = Color.Green
See Also