Aspose::Pdf::OperatorCollection::Add method

OperatorCollection::Add(const System::ArrayPtr<System::SharedPtr<Operator>>&) method

Add operators at the end of the contents operators.

void Aspose::Pdf::OperatorCollection::Add(const System::ArrayPtr<System::SharedPtr<Operator>> &ops)
ParameterTypeDescription
opsconst System::ArrayPtr<System::SharedPtr<Operator>>&Array of operators to be added. Each operator can have any index (by default -1) because they come to the end of the contents operators i.e. indices are assigned automatically.

See Also

OperatorCollection::Add(const System::SharedPtr<Operator>&) method

Adds new operator into collection.

void Aspose::Pdf::OperatorCollection::Add(const System::SharedPtr<Operator> &op) override
ParameterTypeDescription
opconst System::SharedPtr<Operator>&Operator which must be added

See Also

OperatorCollection::Add(const System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Operator>>>&) method

Adds to collection all operators from other collection.

void Aspose::Pdf::OperatorCollection::Add(const System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Operator>>> &ops)
ParameterTypeDescription
opsconst System::SharedPtr<System::Collections::Generic::ICollection<System::SharedPtr<Operator>>>&collection whitch contains operators which will be added.

See Also