Aspose::Pdf::OperatorCollection::Insert method
Contents
[
Hide
]OperatorCollection::Insert(int32_t, const System::ArrayPtr<System::SharedPtr<Operator>>&) method
Insert operators at the the given position.
void Aspose::Pdf::OperatorCollection::Insert(int32_t at, const System::ArrayPtr<System::SharedPtr<Operator>> &ops)
| Parameter | Type | Description |
|---|---|---|
| at | int32_t | Index from which operators are being started to insert. |
| ops | const System::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
- Typedef ArrayPtr
- Typedef SharedPtr
- Class Operator
- Class OperatorCollection
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
OperatorCollection::Insert(int32_t, const 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, const System::SharedPtr<System::Collections::Generic::IList<System::SharedPtr<Operator>>> &ops)
| Parameter | Type | Description |
|---|---|---|
| at | int32_t | Index from which operators are being started to insert. |
| ops | const System::SharedPtr<System::Collections::Generic::IList<System::SharedPtr<Operator>>>& | Array of operators to be inserted. |
See Also
- Typedef SharedPtr
- Class IList
- Class Operator
- Class OperatorCollection
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++
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
| Parameter | Type | Description |
|---|---|---|
| index | int32_t | Index where new operator must be added |
| op | System::SharedPtr<Operator> | Operator which will be insterted |
See Also
- Typedef SharedPtr
- Class Operator
- Class OperatorCollection
- Namespace Aspose::Pdf
- Library Aspose.PDF for C++