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

PrintingSystemBase.CreateBrick(String) Method

Creates a specific brick type.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.2.Core.dll

Declaration

public virtual IBrick CreateBrick(
    string typeName
)

Parameters

Name Type Description
typeName String

The type of created brick.

Returns

Type Description
IBrick

The created brick.

Remarks

This method initializes a new instance of the brick class whose name is specified via the typeName parameter value. These parameter values include: “ImageBrick”, “Textbrick”, “PageImageBrick”, etc. In general, this method works as a brick class constructor.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CreateBrick(String) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Implements

See Also