mirror the page

hi Alex,

Is there anyway to mirror the report's page at the runtim ?
all left objects move to right , all right objects move to left
(such as the FlipChildren in delphi)

Comments

  • edited 4:16AM
    Hello,

    You may access report objects from your code and change its coordinates:
          foreach (Base c in report.AllObjects)
          {
            if (c is ReportComponentBase && !(c is BandBase))
            {
              ReportComponentBase obj = c as ReportComponentBase;
              BandBase parent = obj.Parent as BandBase;
              if (parent != null)
                obj.Left = parent.Width - obj.Right;
            }
          }
    
  • edited 4:16AM
    thank

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.