SetColumnName Method (Table)
In This Topic
Sets the name of the column.
Syntax
'Declaration
Public Sub SetColumnName( _
ByVal As Integer, _
ByVal As String _
)
'Usage
Dim instance As Table
Dim index As Integer
Dim text As String
instance.SetColumnName(index, text)
public void SetColumnName(
int ,
string
)
Parameters
- index
- An integer value indicates the calculated column index.
- text
- A string value indicates the column name.
See Also