ReportExpression<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ReportExpression<T> class.
Overloads
ReportExpression<T>(String) |
Initializes a new instance of the ReportExpression<T> class. |
ReportExpression<T>(T) |
Initializes a new instance of the ReportExpression<T> class. |
ReportExpression<T>(String, IFormatProvider) |
Initializes a new instance of the ReportExpression<T> class. |
ReportExpression<T>(String)
Initializes a new instance of the ReportExpression<T> class.
public:
ReportExpression(System::String ^ value);
public ReportExpression (string value);
new Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> : string -> Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)>
Public Sub New (value As String)
Parameters
- value
- String
The expression value.
Applies to
ReportExpression<T>(T)
Initializes a new instance of the ReportExpression<T> class.
public:
ReportExpression(T value);
public ReportExpression (T value);
new Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> : 'T -> Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)>
Public Sub New (value As T)
Parameters
- value
- T
The expression value.
Applies to
ReportExpression<T>(String, IFormatProvider)
Initializes a new instance of the ReportExpression<T> class.
public:
ReportExpression(System::String ^ value, IFormatProvider ^ provider);
public ReportExpression (string value, IFormatProvider provider);
new Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> : string * IFormatProvider -> Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)>
Public Sub New (value As String, provider As IFormatProvider)
Parameters
- value
- String
The expression value.
- provider
- IFormatProvider
Provides parsing information for the value
parameter.