DocumentFormatConfiguration

DocumentFormatConfiguration class

Merupakan referensi tipe untukDocumentFormatInstance -derived kelas dan daftar ekstensi file yang didukung untuk deteksi format lebih cepat.

public class DocumentFormatConfiguration

Konstruktor

Nama Keterangan
DocumentFormatConfiguration() Menginisialisasi instance baru dari kelas DocumentFormatConfiguration.

Properti

Nama Keterangan
DocumentType { get; set; } Mendapat atau menetapkan jenis kelas, yang diwarisi dariDocumentFormatInstance .
ExtensionFilter { get; set; } Mendapat atau menyetel daftar ekstensi file yang dipisahkan koma (",") (misalnya “.pdf”), tidak peka huruf besar/kecil.
InitializationData { get; set; } Mendapat atau mengatur data, diperlukan untukDocumentFormatInstance inisialisasi.

Metode

Nama Keterangan
SupportsExtension(string) Memeriksa apakah ekstensi file yang diberikan dapat ditangani sebagai DocumentType.

Perkataan

Belajarlah lagi

Contoh

Contoh berikut menunjukkan cara menyetel properti untuk konfigurasi format kustom.

var adobePhotoshopSettings = new DocumentFormatConfiguration();
adobePhotoshopSettings.ExtensionFilter = ".psd";
adobePhotoshopSettings.DocumentType = typeof(MyAdobePhotoshopFormatInstance);

Lihat juga