Posted 10 September 2018, 4:19 pm EST
as per document ColNumberToLetter which was present in farpoint 3 is replaced by GetColumnAutoText as per document . But I am not able to see GetColumnAutoText and please help me on the same.
Forums Home / ComponentOne / WinForms Edition
Posted by: adarshab039 on 10 September 2018, 4:19 pm EST
Posted 10 September 2018, 4:19 pm EST
as per document ColNumberToLetter which was present in farpoint 3 is replaced by GetColumnAutoText as per document . But I am not able to see GetColumnAutoText and please help me on the same.
Posted 11 September 2018, 3:14 am EST
Hello,
This method is associated with SheetView and not Spread. You access the same using:
Dim s As String
s = FpSpread1.ActiveSheet.GetColumnAutoText(1)
MessageBox.Show(s)
Thanks,
Deepak Sharma
Posted 11 September 2018, 11:12 am EST
Thanks Deepak,