123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <Report ScriptLanguage="CSharp" ReportInfo.Description="This report demonstrates how to complete a data band upto a specified number of rows. If the data band has less rows than you specified, it will keep printing empty rows until their amount reaches the necessary number. To do this: - add the Child band to a Data Band; - set its "CompleteToNRows" property to 15." ReportInfo.Created="10/17/2008 18:02:27" ReportInfo.Modified="03/28/2023 17:26:50" ReportInfo.CreatorVersion="1.0.0.0">
- <Styles>
- <Style Name="Even" Fill.Color="MistyRose" Font="Arial, 10pt"/>
- </Styles>
- <Dictionary>
- <TableDataSource Name="Categories" ReferenceName="NorthWind.Categories" DataType="System.Int32" Enabled="true">
- <Column Name="CategoryID" DataType="System.Int32"/>
- <Column Name="CategoryName" DataType="System.String"/>
- <Column Name="Description" DataType="System.String"/>
- <Column Name="Picture" DataType="System.Byte[]" BindableControl="Picture"/>
- </TableDataSource>
- </Dictionary>
- <ReportPage Name="Page1" Watermark.Font="Arial, 60pt">
- <ReportTitleBand Name="ReportTitle1" Width="718.2" Height="37.8" CanGrow="true">
- <TextObject Name="Text1" Width="718.2" Height="37.8" Text="CATEGORIES" HorzAlign="Center" VertAlign="Center" Font="Segoe UI, 14pt, style=Bold"/>
- </ReportTitleBand>
- <DataBand Name="Data1" Top="39.8" Width="718.2" Height="28.35" DataSource="Categories">
- <TextObject Name="Text2" Left="66.15" Width="283.5" Height="28.35" Border.Lines="All" Text="[Categories.CategoryName]" VertAlign="Center" Font="Segoe UI, 9pt"/>
- <TextObject Name="Text3" Width="66.15" Height="28.35" Border.Lines="All" Fill.Color="SeaShell" EvenStyle="Even" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="Segoe UI, 9pt"/>
- <ChildBand Name="Child1" Top="70.15" Width="718.2" Height="28.35" CompleteToNRows="15">
- <TextObject Name="Text4" Width="66.15" Height="28.35" Border.Lines="All" Fill.Color="SeaShell" EvenStyle="Even" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="Segoe UI, 9pt"/>
- <TextObject Name="Text5" Left="66.15" Width="283.5" Height="28.35" Border.Lines="All" VertAlign="Center" Font="Segoe UI, 9pt"/>
- </ChildBand>
- </DataBand>
- <PageFooterBand Name="PageFooter1" Top="100.5" Width="718.2" Height="28.35" Fill.Color="WhiteSmoke">
- <TextObject Name="Text12" Left="9.45" Width="217.35" Height="28.35" Cursor="Hand" Hyperlink.Value="https://www.fast-report.com/en/product/fast-report-net/" Text="Generated by FastReport" VertAlign="Center" Font="Segoe UI, 9pt, style=Underline" TextFill.Color="Blue"/>
- </PageFooterBand>
- </ReportPage>
- </Report>
|