Skip to main content

IPrintingSystem.CreateBrick(String) Method

If implemented by a class, creates a brick by its type name.

Namespace: DevExpress.XtraPrinting

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

NuGet Package: DevExpress.Printing.Core

Declaration

IBrick CreateBrick(
    string typeName
)

Parameters

Name Type Description
typeName String

A String specifying the type name of the brick to be created.

Returns

Type Description
IBrick

An object implementing the IBrick interface.

Remarks

A brick created by the method should be drawn on a IBrickGraphics surface. The IBrickGraphics.DrawBrick method allows you to draw the brick within the specified rectangle area.

Note

This method is intended for internal use only. Normally, you don’t need to use it.

See Also