Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Builds a function call expression.
Namespace: Microsoft.ReportingServices.RdlObjectModel
Assembly: Microsoft.ReportingServices.Designer.Controls (in Microsoft.ReportingServices.Designer.Controls.dll)
Syntax
'Declaration
Public Shared Function BuildFunctionCall ( _
funcName As String, _
ParamArray args As String() _
) As String
'Usage
Dim funcName As String
Dim args As String()
Dim returnValue As String
returnValue = ReportExpression.BuildFunctionCall(funcName, _
args)
public static string BuildFunctionCall(
string funcName,
params string[] args
)
public:
static String^ BuildFunctionCall(
String^ funcName,
... array<String^>^ args
)
static member BuildFunctionCall :
funcName:string *
args:string[] -> string
public static function BuildFunctionCall(
funcName : String,
... args : String[]
) : String
Parameters
- funcName
Type: System.String
The function name.
- args
Type: array<System.String[]
The arguments.
Return Value
Type: System.String
The built function call expression.