Skip to main content
All docs
V23.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.v23.2.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