windowsforms-devexpress-dot-xtraprinting-dot-link.md
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
[Browsable(false)]
public PrintingSystem PrintingSystem { get; set; }
<Browsable(False)>
Public Property PrintingSystem As PrintingSystem
| Type | Description |
|---|---|
| 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
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
link2.CreateDetailArea += new CreateAreaEventHandler(link2_CreateDetailArea);
link2.PrintingSystem = ps;
reporting-printing-library-get-started/VB/Form1.vb#L103
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
AddHandler link2.CreateDetailArea, New CreateAreaEventHandler(AddressOf link2_CreateDetailArea)
link2.PrintingSystem = ps
Dim compositeLink As CompositeLink = New CompositeLink()
See Also