Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

RepositoryItemAnyControl.GetBrick(PrintCellHelperInfo) Method

Returns a brick object that contains information on how the current editor should be printed.

Namespace: DevExpress.XtraEditors.CustomEditor

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public override VisualBrick GetBrick(
    PrintCellHelperInfo info
)

#Parameters

Name Type Description
info DevExpress.XtraEditors.PrintCellHelperInfo

A DevExpress.XtraEditors.PrintCellHelperInfo object that provides information on the editor’s state and appearance settings that will be used when the editor is printed.

#Returns

Type Description
VisualBrick

An object that contains information on how to print the editor.

#Remarks

This method is automatically invoked by the printing mechanism when a container control (GridControl, TreeList, etc.) that uses the current repository item is printed using the Printing System Library. Generally, there is no need to call this method directly from your code.

You may need to override the GetBrick method if you create a custom editor and want it to be printed in a specific manner.

See Also