Back to Devexpress

Link.PrintingSystem Property

windowsforms-devexpress-dot-xtraprinting-dot-link.md

latest3.2 KB
Original Source

Link.PrintingSystem Property

Gets or sets the Printing System used to create and print a document for this link.

Namespace : DevExpress.XtraPrinting

Assembly : DevExpress.XtraPrinting.v25.2.dll

NuGet Package : DevExpress.Win.Printing

Declaration

csharp
[Browsable(false)]
public PrintingSystem PrintingSystem { get; set; }
vb
<Browsable(False)>
Public Property PrintingSystem As PrintingSystem

Property Value

TypeDescription
PrintingSystem

A PrintingSystem object.

|

The following code snippets (auto-collected from DevExpress Examples) contain references to the PrintingSystem property.

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.

reporting-printing-library-get-started/CS/Form1.cs#L86

csharp
base.BeforeCreate();
if (this.PrintingSystem != null) {
    BrickGraphics g = this.PrintingSystem.Graph;

web-forms-pivot-grid-export-additional-captions-header-or-footer/CS/Default.aspx.cs#L23

csharp
link2.CreateDetailArea += new CreateAreaEventHandler(link2_CreateDetailArea);
link2.PrintingSystem = ps;

reporting-printing-library-get-started/VB/Form1.vb#L103

vb
If Not Me.PrintingSystem Is Nothing Then
    Dim g As BrickGraphics = Me.PrintingSystem.Graph

web-forms-pivot-grid-export-additional-captions-header-or-footer/VB/Default.aspx.vb#L22

vb
AddHandler link2.CreateDetailArea, New CreateAreaEventHandler(AddressOf link2_CreateDetailArea)
link2.PrintingSystem = ps
Dim compositeLink As CompositeLink = New CompositeLink()

See Also

Link Class

Link Members

DevExpress.XtraPrinting Namespace