GridViewTransforms.ExecuteTransforms Method
Runs a set of transforms on the scorecard.
Namespace: Microsoft.PerformancePoint.Scorecards.GridViewTransforms
Assembly: Microsoft.PerformancePoint.Scorecards.Client (in Microsoft.PerformancePoint.Scorecards.Client.dll)
Syntax
'Declaration
Public Shared Sub ExecuteTransforms ( _
transformReferences As List(Of GridViewTransformReference), _
viewData As GridViewData, _
cache As IGlobalCache _
)
'Usage
Dim transformReferences As List(Of GridViewTransformReference)
Dim viewData As GridViewData
Dim cache As IGlobalCacheGridViewTransforms.ExecuteTransforms(transformReferences, _
viewData, cache)
public static void ExecuteTransforms(
List<GridViewTransformReference> transformReferences,
GridViewData viewData,
IGlobalCache cache
)
Parameters
transformReferences
Type: System.Collections.Generic.List<GridViewTransformReference>The list of transforms to run.
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
Calling this method results in one call to the ExecuteTransform(String, PropertyBag, GridViewData, IGlobalCache) method for each transform in transformReferences.
See Also
Reference
Microsoft.PerformancePoint.Scorecards.GridViewTransforms Namespace