Aspose::Pdf::OperatorCollection::Insert method

OperatorCollection::Insert(int32_t, System::ArrayPtr<System::SharedPtr<Operator>>) method

Insert operators at the the given position.

void Aspose::Pdf::OperatorCollection::Insert(int32_t at, System::ArrayPtr<System::SharedPtr<Operator>> ops)
ParameterTypeDescription
atint32_tIndex from which operators are being started to insert.
opsSystem::ArrayPtr<System::SharedPtr<Operator>>Array of operators to be inserted. Each operator can have any index (by default -1) because their indices adjusted automatically starting from at .

See Also

OperatorCollection::Insert(int32_t, System::SharedPtr<System::Collections::Generic::IList<System::SharedPtr<Operator>>>) method

Insert operators at the the given position.

void Aspose::Pdf::OperatorCollection::Insert(int32_t at, System::SharedPtr<System::Collections::Generic::IList<System::SharedPtr<Operator>>> ops)
ParameterTypeDescription
atint32_tIndex from which operators are being started to insert.
opsSystem::SharedPtr<System::Collections::Generic::IList<System::SharedPtr<Operator>>>Array of operators to be inserted.

See Also

OperatorCollection::Insert(int32_t, System::SharedPtr<Operator>) method

Inserts operator into collection.

void Aspose::Pdf::OperatorCollection::Insert(int32_t index, System::SharedPtr<Operator> op) override
ParameterTypeDescription
indexint32_tIndex where new operator must be added
opSystem::SharedPtr<Operator>Operator which will be insterted

See Also