'Declaration Public Overloads Function GetColumnLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
Parameters
- row
- The column header row index.
- column
- The column index.
Return Value
Returns the column label string.
'Declaration Public Overloads Function GetColumnLabel( _ ByVal row As Integer, _ ByVal column As Integer _ ) As String
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnLabel(0).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnLabel(0,2).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetColumnViewportCount().ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnLabel(0).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnLabel(0,2).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetColumnViewportCount().ToString())