Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | add information about need to use TRichEdit.MaxLength property to properly handle content > 64 KB |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7addf051273493b5b45cd1f4a17c78c7 |
User & Date: | ab 2013-03-10 09:41:48 |
2013-03-11
| ||
09:39 | added IsEqual(const A,B: TSQLFieldBits): boolean function check-in: c057796e4c user: abouchez tags: trunk | |
2013-03-10
| ||
09:41 | add information about need to use TRichEdit.MaxLength property to properly handle content > 64 KB check-in: 7addf05127 user: ab tags: trunk | |
09:38 | documentation fixes check-in: 9d58967139 user: ab tags: trunk | |
Changes to SQLite3/mORMotReport.pas.
645 646 647 648 649 650 651 652 653 654 655 656 657 658 |
/// draw an Arrow procedure DrawArrow(Point1, Point2: TPoint; HeadSize: integer; SolidHead: boolean); /// draw a Line, either simple or double, between the left & right margins procedure DrawLine(doubleline: boolean=false); /// draw a Dashed Line between the left & right margins procedure DrawDashedLine; /// append a Rich Edit content to the current report procedure AppendRichEdit(RichEditHandle: HWnd); /// jump some line space between paragraphs // - Increments the current Y Position the equivalent of a single line // relative to the current font height and line spacing procedure NewLine; /// jump some half line space between paragraphs // - Increments the current Y Position the equivalent of an half single line |
> > > |
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 |
/// draw an Arrow procedure DrawArrow(Point1, Point2: TPoint; HeadSize: integer; SolidHead: boolean); /// draw a Line, either simple or double, between the left & right margins procedure DrawLine(doubleline: boolean=false); /// draw a Dashed Line between the left & right margins procedure DrawDashedLine; /// append a Rich Edit content to the current report // - note that if you want the TRichEdit component to handle more than 64 KB // of RTF content, you have to set its MaxLength property as expected (this // is a limitation of the VCL, not of this method) procedure AppendRichEdit(RichEditHandle: HWnd); /// jump some line space between paragraphs // - Increments the current Y Position the equivalent of a single line // relative to the current font height and line spacing procedure NewLine; /// jump some half line space between paragraphs // - Increments the current Y Position the equivalent of an half single line |