Parameters
- column
- Column index of column header
Return Value
String containing the automatic text in the specified column header
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | Specified column index is out of range; must be at least zero |
string s;
s = fpSpread1.ActiveSheet.GetColumnAutoText(1);
listBox1.Items.Add(s);
Dim s As String s = FpSpread1.ActiveSheet.GetColumnAutoText(1) ListBox1.Items.Add(s)