Control List Inherits Listbox
ControlInstance List Inherits Listbox
End Control
Control SaveButton Inherits PushButton
ControlInstance SaveButton Inherits PushButton
EventHandler Sub Action()
// setup PDF
dim pdf as new MyDynaPDFMBS
call pdf.CreateNewPDF
call pdf.SetPageCoords(pdf.kpcTopDown)
call pdf.Append
call pdf.SetFont("Helvetica", 12)
// create table
dim ColumnCount as integer = List.ColumnCount
const AllColumns = -1
const AllRows = -1
const TableWidth = 500.0
dim tbl as DynaPDFTableMBS = pdf.CreateTable(List.ListCount, ColumnCount, TableWidth, 100.0)
call tbl.SetBorderWidth(AllRows, AllColumns, 1.0, 1.0, 1.0, 1.0)
call tbl.SetFont(AllRows, AllColumns, "Helvetica", pdf.kfsNone, false, pdf.kcpUnicode)
call tbl.SetGridWidth( 1.0, 1.0)
call tbl.SetGridHorizontalColor(100, 100, 100)
call tbl.SetGridVerticalColor(100, 100, 100)
call tbl.SetBorderColor(AllRows, AllColumns, 100, 100, 100)
dim ColumnWidths() as Double
redim ColumnWidths(ColumnCount-1)
// add header row
dim rowNum as integer = tbl.AddRow
call tbl.SetFlags rowNum, -1, tbl.ktfHeaderRow
for Column as integer = 0 to ColumnCount-1
dim t as string = List.Heading(Column)
call tbl.SetCellText rowNum, Column, pdf.ktaLeft, tbl.kcoCenter, t
dim w as Double = pdf.GetTextWidth(t)
ColumnWidths(Column) = w
next
// now fill all the cells
dim c as integer = List.ListCount-1
for Row as integer = 0 to c
rowNum = tbl.AddRow
for Column as integer = 0 to ColumnCount-1
// which alignment for this cell?
dim AlignMent as integer = pdf.ktaLeft
Select case List.ColumnAlignment(column)
case List.AlignCenter
AlignMent = pdf.ktaCenter
case List.AlignRight
AlignMent = pdf.ktaRight
end Select
dim t as string = list.Cell(row, Column)
call tbl.SetCellText rowNum, Column, AlignMent, tbl.kcoCenter, t
dim w as Double = pdf.GetTextWidth(t)
if w > ColumnWidths(Column) then
ColumnWidths(Column) = w
end if
next
next
dim SumColumnWidth as Double
for Column as integer = 0 to ColumnCount-1
if ColumnWidths(Column) > TableWidth/2 then
// limit all columns to max 50%
ColumnWidths(Column) = TableWidth/2
end if
SumColumnWidth = SumColumnWidth + ColumnWidths(Column)
next
if SumColumnWidth >= TableWidth then
dim f as Double = TableWidth / SumColumnWidth
for Column as integer = 0 to ColumnCount-1
ColumnWidths(Column) = ColumnWidths(Column) * f
call tbl.SetColWidth(Column, ColumnWidths(Column), false)
next
end if
// Draw the table now
call tbl.DrawTable(50.0, 50.0, 742.0)
while tbl.HaveMore
call pdf.EndPage
call pdf.Append
call tbl.DrawTable(50.0, 50.0, 742.0)
wend
call pdf.EndPage
// A table stores errors and warnings in the error log
dim err as DynaPDFErrorMBS
dim ErrLogMessageCount as integer = pdf.GetErrLogMessageCount
for ErrLogMessage as integer = 0 to ErrLogMessageCount-1
err = pdf.GetErrLogMessage(ErrLogMessage)
MsgBox err.Message
next
// No fatal error occurred?
if pdf.HaveOpenDoc then
// We write the output file into the current directory.
// OK, now we can open the output file.
dim f as FolderItem = SpecialFolder.Desktop.Child("Table with Listbox.pdf")
if not pdf.OpenOutputFile(f) then
MsgBox "Failed to open output file!"
end if
call pdf.CloseFile
f.launch
end if
End EventHandler
End Control