delphi - Caption in report builder is always truncated -


i using report builder printing reports in delphi code. setting footer reports. when have text "agency , advertiser agree , acknowledge station's advertising terms , conditions" truncated "agency , advertiser agree , acknowledge station's advertising terms and".

my properties of footer

      object lblstatementfooter: tpplabel         username = 'lblstatementfooter'         hyperlinkcolor = clblue         border.borderpositions = []         border.color = clblack         border.style = pssolid         border.visible = false         ellipsis = false         font.charset = default_charset         font.color = clblack         font.name = 'arial'         font.size = 8         font.style = []         textalignment = tacentered         transparent = true         wordwrap = true         mmheight = 3979         mmleft = 0         mmtop = 794         mmwidth = 203200         bandtype = 8 

is missing here? please me out

because footer printheight = phstatic. can't change property phdynamic.

what can program code in footerbeforeprint like

procedure footerbeforeprint begin     if memo1.lines.count >0     begin           footer.height:= 0.4 * memo1.lines.count;       memo1.height:= footer.height;     end; end 

Comments