Skip to main content

PrintingSystemBase.CreateBrick(String) Method

Creates a specific brick type.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

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.

Implements

See Also