Hello everyone,
Does anyone know how to set the width of an IGrid element or the containing band element?
I have been looking for the documentation and I have not found anything. Also how do you set the size of the font in the cells??? Ounce again I have been looking for documentation with no luck.
TIA,
Patrick
Ok... Missed this one: Here is how to set report objects widths:
myReportObjName.Width = New FixedWidth(int)
Hope it helps someone,
Ok... This is how to set font and size in the cell:
gridRow = myGrid.AddRow()
gridCell = gridRow.AddCell()
'cellPattern.Apply(gridCell)
quickText.Font = New Infragistics.Documents.Graphics.Font("Arial", 10)
Next