DataGridLinkBase.DataGrid Property
In This Article
Gets or sets a DataGrid object to be printed via the current link.
Namespace: DevExpress.XtraPrintingLinks
Assembly: DevExpress.XtraPrinting.v24.2.dll
NuGet Package: DevExpress.Win.Printing
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Data |
null | A Data |
#Example
This example demonstrates how to create and display a Print Preview for the DataGrid control, via the DataGridLink.
using System;
using System.Windows.Forms;
using DevExpress.XtraPrintingLinks;
// ...
private void simpleButton1_Click(object sender, EventArgs e) {
DataGridLink dgLink = new DataGridLink();
dgLink.DataGrid = dataGrid1;
printingSystem1.Links.Add(dgLink);
dgLink.ShowPreviewDialog();
}
See Also