ActiveReports 18 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / BackgroundImage Class / BackgroundRepeat Property

In This Topic
    BackgroundRepeat Property (BackgroundImage)
    In This Topic

    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).

    Syntax
    'Declaration
     
    Public Property BackgroundRepeat As GrapeCity.Enterprise.Data.Expressions.ExpressionInfo
    public GrapeCity.Enterprise.Data.Expressions.ExpressionInfo BackgroundRepeat {get; set;}

    Property Value

    An GrapeCity.ActiveReports.Expressions.ExpressionInfo object that evaluates to a BackgroundRepeat enumeration. Valid values are listed in the table below.

    Enumerated Value Description
    Repeat The image repeats horizontally and vertically in the background.
    NoRepeat The image is rendered once and does not repeat.
    RepeatX The image repeats horizontally in the background.
    RepeatY The image repeats vertically in the background.
    See Also