BIMonitoringServiceApplicationProxy.GetReportViewImageData Method
Retrieves the image that is associate with a previously rendered report.
Namespace: Microsoft.PerformancePoint.Scorecards
Assembly: Microsoft.PerformancePoint.Scorecards.ServerCommon (in Microsoft.PerformancePoint.Scorecards.ServerCommon.dll)
Syntax
'Declaration
Public Function GetReportViewImageData ( _
tempFcoLocation As String, _
externalkey As String, _
height As Integer, _
width As Integer, _
colStart As Integer, _
colCount As Integer, _
<OutAttribute> ByRef mimeType As String, _
<OutAttribute> ByRef viewHtml As String, _
<OutAttribute> ByRef bytesImageData As Byte() _
) As Boolean
'Usage
Dim instance As BIMonitoringServiceApplicationProxy
Dim tempFcoLocation As String
Dim externalkey As String
Dim height As Integer
Dim width As Integer
Dim colStart As Integer
Dim colCount As Integer
Dim mimeType As String
Dim viewHtml As String
Dim bytesImageData As Byte()
Dim returnValue As Boolean
returnValue = instance.GetReportViewImageData(tempFcoLocation, _
externalkey, height, width, colStart, _
colCount, mimeType, viewHtml, bytesImageData)
public bool GetReportViewImageData(
string tempFcoLocation,
string externalkey,
int height,
int width,
int colStart,
int colCount,
out string mimeType,
out string viewHtml,
out byte[] bytesImageData
)
Parameters
tempFcoLocation
Type: System.StringThe location of the report in the repository.
externalkey
Type: System.StringA unique value combined with the user’s identity to identify the generated report.
height
Type: System.Int32The height of the image data.
width
Type: System.Int32The width of the image data.
colStart
Type: System.Int32The zero-based value that represents the starting X-axis column for the returned image data.
colCount
Type: System.Int32The number of data columns to include in the image data result.
mimeType
Type: System.StringThe returned mime-type for the image.
viewHtml
Type: System.StringThe returned image if the MIME type is text.
bytesImageData
Type: []The returned image if the MIME type is image/png.
Return Value
Type: System.Boolean
true if the call was successful; otherwise false.
Implements
See Also
Reference
BIMonitoringServiceApplicationProxy Class