Skip to main content
A newer version of this page is available. .

CustomPrintEventArgs.Brick Property

Provides access to the brick that represents the contents and appearance of a cell, when it is printed or exported.

Namespace: DevExpress.PivotGrid.Printing

Assembly: DevExpress.PivotGrid.v21.2.Core.dll

NuGet Package: DevExpress.PivotGrid.Core

Declaration

public IVisualBrick Brick { get; set; }

Property Value

Type Description
DevExpress.XtraPrinting.IVisualBrick

An object implementing the DevExpress.XtraPrinting.IVisualBrick interface or its descendant (e.g., DevExpress.XtraPrinting.ITextBrick, DevExpress.XtraPrinting.IImageBrick, etc.).

Remarks

Use the Brick property to access a VisualBrick object (or its descendant), which will represent the current cell of a PivotGridControl that is being printed or exported.

The brick‘s properties allow you to customize the brick’s content, as well as its size, location, appearance and other options.

See Also