Skip to main content
A newer version of this page is available. .
All docs
V20.2

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.v20.2.Core.dll

NuGet Packages: DevExpress.Printing.Core, DevExpress.WindowsDesktop.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