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.StringThe identifier of the registered transform.
parameters
Type: Microsoft.PerformancePoint.Scorecards.PropertyBagThe parameters for this transform, which are specific to your transform implementation.
viewData
Type: Microsoft.PerformancePoint.Scorecards.GridViewDataThe GridViewData object that represents the scorecard run-time object model.
cache
Type: Microsoft.PerformancePoint.Scorecards.IGlobalCacheThe 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 in Microsoft SharePoint Server 2010.
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
Microsoft.PerformancePoint.Scorecards.GridViewTransforms Namespace