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

IPrintingSystem Interface

Provides the base functionality of the XtraPrinting Library.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Data.v19.1.dll

Declaration

public interface IPrintingSystem

The following members return IPrintingSystem objects:

Library Related API Members
Cross-Platform Class Library ChartPrintInitializeEventArgs.PrintingSystem
ILink.PrintingSystem
WinForms Controls PrintInitializeEventArgs.PrintingSystem
PrintRowEventArgs.PS

Remarks

The IPrintingSystem interface declares the IPrintingSystem.Version property which indicates the current version of the printing system. Based on the returned value a user can determine whether the required functionality is available.

The IPrintingSystem.CreateBrick method creates bricks for the printing system by its names. For instance, the PrintingSystem class implementation of this method enables a user to create predefined bricks: “PageInfoBrick”, “TextBrick”, “ImageBrick”, etc. (See the names of the classes derived from the Brick class).

The IPrintingSystem interface also declares two events: IPrintingSystem.BeforeChange and IPrintingSystem.AfterChange. They occur before and after changing properties for the printing system. It’s up to the classes that implement the IPrintingSystem interface to decide when to generate these events.

See Also