Class FormExporter
Info
Mewakili plugin Documentize.FormExporter. Digunakan untuk mengekspor nilai Form dari dokumen PDF ke file DSV atau CSV.
public static class FormExporter
Warisan
Anggota yang diwarisi
- object.GetType(),
- object.MemberwiseClone(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Contoh
Contoh ini mendemonstrasikan cara mengekspor nilai Form ke file CSV.
// Buat objek FormExportToDsvOptions untuk mengatur instruksi
var options = new FormExportToDsvOptions(',', true);
// Tambahkan jalur file input
options.AddInput(new FileDataSource("path_to_your_pdf_file.pdf"));
// Atur jalur file output
options.AddOutput(new FileDataSource("path_to_result_csv_file.csv"));
// Lakukan proses
FormExporter.Process(options);
Metode
Process(FormExportToDsvOptions)
Memulai proses Documentize.FormExporter dengan parameter yang ditentukan.
public static ResultContainer Process(FormExportToDsvOptions options)
Parameter
options
FormExportToDsvOptions: Objek opsi yang berisi instruksi untuk operasi.
Mengembalikan
ResultContainer : Sebuah objek yang berisi hasil dari operasi.
Pengecualian
Jika opsi tidak diatur.
Namespace: Documentize Assembly: Documentize.dll