Hợp nhất lớp
Thông tin
Đại diện cho plugin Documentize.Merger. Được sử dụng để hợp nhất nhiều tài liệu PDF thành một PDF duy nhất.
public sealed class Merger
Kế thừa
Các thành viên kế thừa
- object.GetType(),
- object.ToString(),
- object.Equals(object?),
- object.Equals(object?, object?),
- object.ReferenceEquals(object?, object?),
- object.GetHashCode()
Ví dụ
Ví dụ này minh họa cách hợp nhất hai tài liệu PDF.
// tạo Merger
var plugin = new Merger();
// tạo đối tượng MergeOptions để thiết lập hướng dẫn
var opt = new MergeOptions();
// thêm đường dẫn tệp đầu vào
opt.AddInput(new FileDataSource(inputPath1));
opt.AddInput(new FileDataSource(inputPath2));
// thiết lập đường dẫn tệp đầu ra
opt.AddOutput(new FileDataSource(outputPath));
// thực hiện quá trình
plugin.Process(opt);
Các hàm khởi tạo
Merger()
public Merger()
Các phương thức
Process(MergeOptions)
Bắt đầu quá trình Documentize.Merger với các tham số đã chỉ định.
public ResultContainer Process(MergeOptions options)
Tham số
options
MergeOptions: Một đối tượng tùy chọn có chứa hướng dẫn cho hoạt động.
Trả về
ResultContainer : Một đối tượng Documentize.ResultContainer chứa kết quả của hoạt động.
Namespace: Documentize Assembly: Documentize.dll