GetNewName 方法
Assists in creating new consecutive numbered names that start with namePrefix.
命名空间: Microsoft.AnalysisServices
程序集: Microsoft.AnalysisServices(在 Microsoft.AnalysisServices.dll 中)
语法
声明
Public Function GetNewName ( _
namePrefix As String _
) As String
用法
Dim instance As AttributeRelationshipCollection
Dim namePrefix As String
Dim returnValue As String
returnValue = instance.GetNewName(namePrefix)
public string GetNewName(
string namePrefix
)
public:
String^ GetNewName(
String^ namePrefix
)
member GetNewName :
namePrefix:string -> string
public function GetNewName(
namePrefix : String
) : String
参数
- namePrefix
类型:System. . :: . .String
A string with the prefix for the numbered names.
返回值
类型:System. . :: . .String
A System.String with the new name.
注释
GetNewName will first return namePrefix, if it hasn't been used. Otherwise, it will return namePrefix1, namePrefix2, and so on.