Version

CellControlAttached Event

This event is raised when a PivotCell comes into the viewport of the XamPivotGrid
Syntax
'Declaration
 
Public Event CellControlAttached As EventHandler(Of PivotCellControlAttachedEventArgs)
public event EventHandler<PivotCellControlAttachedEventArgs> CellControlAttached
Event Data

The event handler receives an argument of type PivotCellControlAttachedEventArgs containing data related to this event. The following PivotCellControlAttachedEventArgs properties provide information specific to this event.

PropertyDescription
Cell Gets the PivotCell object that was just recently made visible.
IsDirty Gets or sets a value indicating whether the PivotCellControl for the PivotCell should be disposed of when it scrolls out of view.
Remarks
This event is useful for updating the style of a cell conditionally.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also