Class Document.MergeOptions
Namespace: Aspose.Pdf
Assembly: Aspose.PDF.dll (26.2.0)
Represents the options to Merge methods.
public class Document.MergeOptionsInheritance
object ← Document.MergeOptions
Inherited Members
object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()
Constructors
MergeOptions()
public MergeOptions()Properties
ConcatenationPacketSize
Number of documents concatenated before new incremental update was made during concatenation when UseDiskBuffer is set to true. The default value is 4.
public int ConcatenationPacketSize { get; set; }Property Value
IsNeedPageTreeBalance
Gets and sets the requirement for page tree balancing The entire page tree in the resulting document will be rebalanced. It creates balanced pages tree to speed up pages access.
public bool IsNeedPageTreeBalance { get; set; }Property Value
MaximumNodesInLevel
Gets and sets the maximum nodes in pages tree level. Default is 10.
public byte MaximumNodesInLevel { get; set; }Property Value
UseDiskBuffer
If this option used then destination document will be saved on disk periodically and further concatenation will appllied to it as incremental updates.
The default value is false.
public bool UseDiskBuffer { get; set; }Property Value
Remarks
This option is ignored when calling a non-static merge method.