Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct method

PdfFileEditor::AddMarginsPct(System::SharedPtr<System::IO::Stream>, System::SharedPtr<System::IO::Stream>, System::ArrayPtr<int32_t>, double, double, double, double) method

Resizes page contents and add specified margins. Margins are specified in percents of intitial page size.

bool Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct(System::SharedPtr<System::IO::Stream> source, System::SharedPtr<System::IO::Stream> destination, System::ArrayPtr<int32_t> pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin)
ParameterTypeDescription
sourceSystem::SharedPtr<System::IO::Stream>Stream which contains source document.
destinationSystem::SharedPtr<System::IO::Stream>Stream where resultant document will be saved.
pagesSystem::ArrayPtr<int32_t>Array of page indexes. If null then all document pages will be processed.
leftMargindoubleLeft margin in percents of initial page size.
rightMargindoubleRight margin in percents of initial page size.
topMargindoubleTop margin in percents of initial page size.
bottomMargindoubleBottom margin in percents of initial page size.

ReturnValue

true if action was performed successfully.

See Also

PdfFileEditor::AddMarginsPct(System::String, System::String, System::ArrayPtr<int32_t>, double, double, double, double) method

Resizes page contents and add specified margins. Margins are specified in percents of intitial page size.

bool Aspose::Pdf::Facades::PdfFileEditor::AddMarginsPct(System::String source, System::String destination, System::ArrayPtr<int32_t> pages, double leftMargin, double rightMargin, double topMargin, double bottomMargin)
ParameterTypeDescription
sourceSystem::StringPath to source document.
destinationSystem::StringPath where resultant document will be saved.
pagesSystem::ArrayPtr<int32_t>Array of page indexes. If null then all document pages will be processed.
leftMargindoubleLeft margin in percents of initial page size.
rightMargindoubleRight margin in percents of initial page size.
topMargindoubleTop margin in percents of initial page size.
bottomMargindoubleBottom margin in percents of initial page size.

ReturnValue

true if resize was successful

See Also