Bộ chia lớp

Thông tin

Đại diện cho plugin Documentize.Splitter. Được sử dụng để chia tài liệu thành các trang riêng biệt.

public class Splitter  

Kế thừa

object
Splitter

Thành phần kế thừa

Ví dụ

Ví dụ này minh họa cách chia tài liệu PDF.

// tạo Bộ chia  
var plugin = new Splitter();  
// tạo đối tượng SplitOptions để đặt chỉ dẫn  
var opt = new SplitOptions();  
// thêm đường dẫn tệp đầu vào  
opt.AddInput(new FileDataSource(inputPath));  
// đặt đường dẫn tệp đầu ra  
opt.AddOutput(new FileDataSource(outputPath1));  
opt.AddOutput(new FileDataSource(outputPath2));  
// thực hiện quá trình  
plugin.Process(opt);  

Các hàm dựng

Splitter()

public Splitter()  

Các phương thức

Process(IPluginOptions)

Bắt đầu quá trình Documentize.Splitter với các tham số được chỉ định.

public ResultContainer Process(IPluginOptions options)  

Tham số

  • options IPluginOptions: Một đối tượng tùy chọn chứa chỉ dẫn cho Documentize.Splitter.

Trả về

ResultContainer : Một đối tượng ResultContainer chứa kết quả của thao tác.

Ngoại lệ

InvalidOperationException

Namespace: Documentize
Assembly: Documentize.dll

 Tiếng Việt