Posted 8 September 2017, 1:53 pm EST
hii,
i need to Change the width of the default header of row and column in farpoint spread.
Forums Home / Spread / Spread for WinForms
Posted by: lier on 8 September 2017, 1:53 pm EST
Posted 8 September 2017, 1:53 pm EST
hii,
i need to Change the width of the default header of row and column in farpoint spread.
Posted 8 September 2017, 1:53 pm EST
Hello,
Using the following properties you can change the width of row and column header.
FpSpread1.ActiveSheet.RowHeader.Columns(0).Width = 100
FpSpread1.ActiveSheet.ColumnHeader.Columns(-1).Width = 100 (Where -1 represents, all the columns)
Let us know if you need further help.
Thanks,
Deepak Sharma
Posted 8 September 2017, 1:53 pm EST
thanks!