tags:

views:

57

answers:

1

Hello, I am using iTextSharp in VB.net. I have this piece of code from java

mainTable.WidthPercentage(New Single() {100, 0}, pageSize)

what is the equivalent for this in VB.net

+1  A: 
mainTable.WidthPercentage(New Single() {100, 0}, pageSize)
Andrey