aspnet-devexpress-dot-web-f0e114f5.md
Specifies how a background image fills the available space.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public enum BackgroundImageRepeat
Public Enum BackgroundImageRepeat
| Name | Description |
|---|---|
Repeat |
Repeats the image horizontally and vertically in the background.
|
| NoRepeat |
Displays the image only once and does not repeat it. The image’s position can be specified via the BackgroundImage.HorizontalPosition and BackgroundImage.VerticalPosition properties.
|
| RepeatX |
Repeats the image horizontally in the background. The vertical position of the images can be specified via the BackgroundImage.VerticalPosition property.
|
| RepeatY |
Repeats the image vertically in the background. The horizontal position of the images can be specified via the BackgroundImage.HorizontalPosition property.
|
The following properties accept/return BackgroundImageRepeat values:
The BackgroundImageRepeat enumerator contains values specifying how a background image fills the available space. The values of this enumerator are used to set the BackgroundImage.Repeat property.
See Also