windowsforms-devexpress-dot-xtraprinting-dot-printablecomponentlink.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 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#L19
link1.Component = ASPxPivotGridExporter1;
link1.PrintingSystem = ps;
web-forms-pivot-grid-export-additional-captions-header-or-footer/VB/Default.aspx.vb#L19
link1.Component = ASPxPivotGridExporter1
link1.PrintingSystem = ps
Dim link2 As Link = New Link()
See Also