IBIMonitoringServiceApplicationProxy.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
Function GetReportViewImageData ( _
tempFcoLocation As String, _
key 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 IBIMonitoringServiceApplicationProxy
Dim tempFcoLocation As String
Dim key 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, _
key, height, width, colStart, colCount, _
mimeType, viewHtml, bytesImageData)
bool GetReportViewImageData(
string tempFcoLocation,
string key,
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.
key
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.
See also
Reference
IBIMonitoringServiceApplicationProxy interface