Ticket Q246135
Visible to All Users

How do I get the Bricks created by an XRControl?

created 15 years ago

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

Answers approved by DevExpress Support

created 15 years ago (modified 12 years ago)

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

    Show previous comments (5)
    DevExpress Support Team 15 years ago

      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!

        DevExpress Support Team 15 years ago

          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.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.