Skip to main content
All docs
V25.1
  • BrickSelector.GetBricksByXRControl(Page, Object) Method

    A static method that returns an enumeration of visual bricks generated by the specified XtraReport control from a document page.

    Namespace: DevExpress.XtraPrinting

    Assembly: DevExpress.Printing.v25.1.Core.dll

    NuGet Package: DevExpress.Printing.Core

    Declaration

    public static IEnumerable<VisualBrick> GetBricksByXRControl(
        Page page,
        object xrControl
    )

    Parameters

    Name Type Description
    page Page

    The page from which to return bricks.

    xrControl Object

    An XRControl descendant. A brick is returned if it was generated by this control.

    Returns

    Type Description
    IEnumerable<VisualBrick>

    Bricks from the specified page.

    Remarks

    This method returns an empty enumeration if the CachedReportSource/CachedReportSourceWeb component was used to create the document.

    See Also