| Report.WriteBr MethodThe WriteBrmethod is the equivalent of appending the HTML tag<br />to the string of the
Writemethod. Report.Write(str & "<br />") 	' Same as Report.WriteBr(str)
 
		The method WriteBris portable and will generate the 
		appropriate code for an HTML, RTF or Text report. The method
		WriteBris also a lot faster than manually concatening the tag
		<br />. The<br />tag is always 
		appended, regardless of the content of the string. Examples: 
Report.WriteBr "Number of Children: " & i.Children.Count
Report.WriteBr "Children: " & i.Children.HtmlHyperlinks
Report.WriteBr "This is <b>bold</b> text"
 See Also:
 Write |