'Deklaration
Public Sub Export( _ ByVal exportConfiguration As ExportConfiguration _ )
public void Export( ExportConfiguration exportConfiguration )
public: void Export( ExportConfiguration^ exportConfiguration )
Parameter
- exportConfiguration
Die Schlüsselmethode ist zuständig für den datengebundenen Export in eines der verfügbaren Exportformate. Weisen Sie der Komponente eine Datenquelle mit der DataSource Eigenschaft zu und rufen diese Methode auf um den Export zu starten. Exportoptionen, die nicht in der ExportConfiguration Klasse verfügbar sind, können mit der ExportOptions Eigenschaft hinzugefügt werden.
'Deklaration
Public Sub Export( _ ByVal exportConfiguration As ExportConfiguration _ )
public void Export( ExportConfiguration exportConfiguration )
public: void Export( ExportConfiguration^ exportConfiguration )
OleDbCommand cmd = CreateOleDbCommand(); DbCommandSetDataProvider provider = new DbCommandSetDataProvider(); provider.AddCommand(cmd, "Products"); LL.SetDataBinding(provider, "Products"); // create export configuration ExportConfiguration exportConfiguration = new ExportConfiguration(LlExportTarget.Pdf, fileNameBox.Text, "simple.lst"); exportConfiguration.ShowResult = true; // export LL.Export(exportConfiguration);
Dim cmd As OleDbCommand = CreateOleDbCommand() Dim provider As New DbCommandSetDataProvider() provider.AddCommand(cmd, "Products") LL.SetDataBinding(provider, "Products") ' create export configuration Dim exportConfiguration As New ExportConfiguration(LlExportTarget.Pdf, fileNameBox.Text, "simple.lst") exportConfiguration.ShowResult = True ' export LL.Export(exportConfiguration)
Plattformen: Windows 10 (Version 21H2 - 22H2), Windows 11 (21H2 - 23H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 7, .NET 8