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

BackgroundImageRepeat Enum

Specifies how a background image fills the available space.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public enum BackgroundImageRepeat

Members

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.

Related API Members

The following properties accept/return BackgroundImageRepeat values:

Remarks

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