Is there an event I can listen to that gets fired when each Brick for a particular XRControl is created? The Draw event doesn't work for me because that doesn't get fired until the preview is actually shown. I'm looking for a way to access the Bricks earlier, either just after or during the call to CreateDocument().
How do I get the Bricks created by an XRControl?
Answers approved by DevExpress Support
Hi Joe,
Thank you for the report. Basically to accomplish this task you can use the XRControl.PrintOnPage event which occurs when the representation of a particular control is printed on the current page of the report. Alternatively you can handle the XtraReport.AfterPrint event to iterate through the all bricks using code similar to the following one:
C#foreach (Page p in this.Pages)
{
DevExpress.XtraPrinting.Native.NestedBrickIterator iterator = new DevExpress.XtraPrinting.Native.NestedBrickIterator(p.InnerBricks);
while (iterator.MoveNext())
{
VisualBrick visualBrick = iterator.CurrentBrick as VisualBrick;
if (visualBrick != null)
//Do some actions based on your requirements
}
}
Thank you,
Valery
Hi Joe,
Unfortunately, I don't quite understand the "source brick" conception?
However, I believe that you can use the approach shown in the How to insert page numbers for groups example : store the processing row in the XRConrol.Tag property in the BeforePrint event handler and get it by using Brick.Value property.
Please try this solution, and let us know the results.
Thanks,
Andrew
Hi Andrew,
The "source bricks" were just the bricks that I wanted to link from. I wanted to link those bricks to other bricks, and the way I figured out which bricks to link to was by how the data rows that generated the source bricks related to the data rows that generated the target bricks.
Setting XRControl.Tag = GetCurrentRow() in the BeforePrint event and enumerating through the bricks as shown in Valery's code example to get the data rows for each brick using the Brick.Value property worked for building a mapping between the data rows and the generated bricks.
Thanks to both of you for your help!
You're welcome, Joe!
Feel free to contact us in case of any further difficulty. We'll do our best to help you.
Thanks,
Valery.