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.String

    The location of the report in the repository.

  • externalkey
    Type: System.String

    A unique value combined with the user’s identity to identify the generated report.

  • colStart
    Type: System.Int32

    The zero-based value that represents the starting X-axis column for the returned image data.

  • colCount
    Type: System.Int32

    The number of data columns to include in the image data result.

  • mimeType
    Type: System.String

    The returned mime-type for the image.

  • viewHtml
    Type: System.String

    The 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

IBIMonitoringServiceApplicationProxy.GetReportViewImageData(String, String, Int32, Int32, Int32, Int32, String, String, [])

See also

Reference

BIMonitoringServiceApplicationProxy class

BIMonitoringServiceApplicationProxy members

Microsoft.PerformancePoint.Scorecards namespace