File: Report2.class

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (19 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
' Gambas class file

Public Sub _new()

  Dim Rlbl As ReportLabel
  Dim i As Integer
  'Report.Debug = True
  For i = 0 To 200

    Rlbl = New ReportLabel(RVBCont)
    Rlbl.Text = "Ligne " & i
    Rlbl.Border.bottom.Width = "1px"
    Rlbl.Padding.Top = "3 mm"
    Rlbl.Padding.Bottom = "1mm"
    Rlbl.Padding.Left = "2 mm"

  Next

End