[]
Gets or sets a value indicating how the background image repeats to fill the available space: vertically (RepeatY), horizontally (RepeatX), both (Repeat), or neither (NoRepeat).
[ExpressionBaseType(typeof(BackgroundRepeat))]
public ExpressionInfo BackgroundRepeat { get; set; }
Type | Description |
---|---|
ExpressionInfo | An ExpressionInfo object evaluating to a BackgroundRepeat enumeration. |
Valid values are listed in the table below.
Enumerated Value | Description |
---|---|
Repeat | An image repeats horizontally and vertically in the background. |
NoRepeat | An image is rendered once and does not repeat. |
RepeatX | An image repeats horizontally in the background. |
RepeatY | An image repeats vertically in the background. |