Share via


GridViewTransforms.ExecuteTransform method

Runs the specified transform on the scorecard.

Namespace:  Microsoft.PerformancePoint.Scorecards.GridViewTransforms
Assembly:  Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)

Syntax

'Declaration
Public Shared Sub ExecuteTransform ( _
    transformId As String, _
    parameters As PropertyBag, _
    viewData As GridViewData, _
    cache As IGlobalCache _
)
'Usage
Dim transformId As String
Dim parameters As PropertyBag
Dim viewData As GridViewData
Dim cache As IGlobalCacheGridViewTransforms.ExecuteTransform(transformId, _
    parameters, viewData, cache)
public static void ExecuteTransform(
    string transformId,
    PropertyBag parameters,
    GridViewData viewData,
    IGlobalCache cache
)

Parameters

  • transformId
    Type: System.String

    The identifier of the registered transform.

  • cache
    Type: Microsoft.PerformancePoint.Scorecards.IGlobalCache

    The local cache.

    Note

    The cache can be used to improve performance and should contain the scorecard instance and its dependencies. Transform implementations should look in the cache before trying to retrieve information directly from PerformancePoint Services.

Remarks

The specified transform must be registered in the CustomViewTransforms section in the web.config file for PerformancePoint Services. Calling this method triggers a call to the Execute(GridViewData, PropertyBag, IGlobalCache) method that is associated with the specified transform.

See also

Reference

GridViewTransforms class

GridViewTransforms members

Microsoft.PerformancePoint.Scorecards.GridViewTransforms namespace