Méthode Add (String, String, OleDbType)
Creates and adds a DataItem, with the specified table name, column name, and data type, to the end of the collection.
Espace de noms : Microsoft.AnalysisServices
Assembly : Microsoft.AnalysisServices (en Microsoft.AnalysisServices.dll)
Syntaxe
'Déclaration
Public Function Add ( _
tableName As String, _
columnName As String, _
dataType As OleDbType _
) As DataItem
'Utilisation
Dim instance As DataItemCollection
Dim tableName As String
Dim columnName As String
Dim dataType As OleDbType
Dim returnValue As DataItem
returnValue = instance.Add(tableName, _
columnName, dataType)
public DataItem Add(
string tableName,
string columnName,
OleDbType dataType
)
public:
DataItem^ Add(
String^ tableName,
String^ columnName,
OleDbType dataType
)
member Add :
tableName:string *
columnName:string *
dataType:OleDbType -> DataItem
public function Add(
tableName : String,
columnName : String,
dataType : OleDbType
) : DataItem
Paramètres
- tableName
Type : System. . :: . .String
The table name of the DataItem to be added.
- columnName
Type : System. . :: . .String
The column name of the DataItem to be added.
- dataType
Type : System.Data.OleDb. . :: . .OleDbType
The OleDbType value of the DataItem to be added.
Valeur de retour
Type : Microsoft.AnalysisServices. . :: . .DataItem
A new DataItem with the specified table name, column name, and data type.
Voir aussi