I am attempting to do something which I know is simple, but, I cannot figure it out. I want to add a few items to the very last page of a section, at the bottom. It is actually a signature line and a an image of a signature. I have added all these items to a group, which is easy enough, but, I cannot get the group to show at the bottom. The report varies in size, so most of the elements that add to the x and y will not work. The footer would work, but, I cannot get this particular element to show on only the last page.
Here is what I have after adding all the other section elements, maybe a group is not the way to do this -
Dim group1 As Infragistics.Documents.Report.IGroup = section1.AddGroup() group1.Alignment.Horizontal = Alignment.Left group1.Alignment.Vertical = Alignment.Bottom group1.Height = New Infragistics.Documents.Report.FixedHeight(50)
Nevermind, I got it with the stretcher. For anyone interested:
Dim group1 As Infragistics.Documents.Report.IGroup = section1.AddGroup()Dim st As Infragistics.Documents.Report.IStretcher = group1.AddStretcher()
st.Clearance = 60
Dim site As Infragistics.Documents.Report.ISite = section1.AddSite()
Then added all of my ending elements to the site.