iOS Question How do I change the Font Size of a tableview Section header

davepamn

Active Member
Licensed User
Longtime User
B4X:
dim tvContracts as tableview
tvContracts.Initialize("tvContracts",false)
tvContracts.rowheight=50dip
dim sContractNumber as string="1"

tvContracts.AddSection(sContractNumber)
 
Top