Class Splitter

Class Splitter

İsim alanı : Aspose.Pdf.Plugins Toplama: Aspose.PDF.dll (25.4.0)

Aspose.Pdf.Plugins.Splitter eklentisi oluşturur.

public class Splitter : IPlugin

Inheritance

object Splitter

Implements

IPlugin

mirasçı üyeleri

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

Örnek, PDF belgesinin nasıl bölüneceğini gösterir.

// create Splitter
var splitter = new Splitter();
// create SplitOptions object to set instructions
var opt = new SplitOptions();
// add input file paths
opt.AddInput(new FileDataSource(inputPath));
// set output file paths
opt.AddOutput(new FileDataSource(outputPath1));
opt.AddOutput(new FileDataSource(outputPath2));
// perform the process
splitter.Process(opt);

Constructors

Splitter()

public Splitter()

Methods

Process(IPlugin seçenekleri)

Aspose.Pdf.Plugins.Splitter işlemini belirlenen parametrelerle başlatır.

public ResultContainer Process(IPluginOptions options)

Parameters

options IPluginOptions

Aspose.Pdf.Plugins.Splitter için talimatları içeren bir seçenek nesnesi.

Returns

ResultContainer

Operasyonun sonuçlarını içeren bir ResultContainer nesnesi.

Exceptions

InvalidOperationException

 Türkçe