Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Creates and adds a DataItem, with the specified table name and column name, to the end of the collection.
Namespace: Microsoft.AnalysisServices
Assembly: Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)
Syntax
'Declaration
Public Function Add ( _
tableName As String, _
columnName As String _
) As DataItem
'Usage
Dim instance As DataItemCollection
Dim tableName As String
Dim columnName As String
Dim returnValue As DataItem
returnValue = instance.Add(tableName, _
columnName)
public DataItem Add(
string tableName,
string columnName
)
public:
DataItem^ Add(
String^ tableName,
String^ columnName
)
member Add :
tableName:string *
columnName:string -> DataItem
public function Add(
tableName : String,
columnName : String
) : DataItem
Parameters
- 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.
Return Value
Type: Microsoft.AnalysisServices.DataItem
A new DataItem with the specified table name and column name.