Set data band maximum height

edited 4:08AM in FastReport .NET
Hi, i am using a data band with the can grow and can shrink options to TRUE.
I need to ensure however that the data band does not exceed a certain space on paper.
Is there a way to set a maximum height for it?

Thanx in advance.

Comments

  • edited 4:08AM
    Hello,

    You may use the code attached to the band's AfterLayout event:

    if (myBand.Height > Units.Centimeters * 10)
    myBand.Height = Units.Centimeters * 10;

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.