windowsforms-devexpress-dot-xtraprintinglinks-dot-compositelink.md
Gets or sets the Printing System used to create and print a document for this link.
Namespace : DevExpress.XtraPrintingLinks
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 snippet (auto-collected from DevExpress Examples) contains a reference 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.
web-forms-pivot-grid-export-additional-captions-header-or-footer/CS/Default.aspx.cs#L27
compositeLink.Links.AddRange(new object[] { link2, link1 });
compositeLink.PrintingSystem = ps;
web-forms-pivot-grid-export-additional-captions-header-or-footer/VB/Default.aspx.vb#L25
compositeLink.Links.AddRange(New Object() {link2, link1})
compositeLink.PrintingSystem = ps
compositeLink.CreateDocument()
See Also