Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions english/cpp/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ is_root: true
| [Aspose::Pdf::Vector](./aspose.pdf.vector/) | The **[Aspose.Pdf.Vector](./aspose.pdf.vector/)** is a root namespace for graphics operations. |
| [Aspose::Pdf::XfaConverter](./aspose.pdf.xfaconverter/) | |
| [System](./system/) | |
| [System::Buffers](./system.buffers/) | |
| [System::Collections](./system.collections/) | |
| [System::Collections::Concurrent](./system.collections.concurrent/) | |
| [System::Collections::Generic](./system.collections.generic/) | |
Expand Down
4 changes: 2 additions & 2 deletions english/cpp/aspose.pdf.annotations/annotation/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class Annotation : public Aspose::Pdf::BaseParagraph

| Method | Description |
| --- | --- |
| virtual [Accept](./accept/)(System::SharedPtr\<AnnotationSelector\>) | Accepts visitor for annotation processing. |
| virtual [ChangeAfterResize](./changeafterresize/)(System::SharedPtr\<Matrix\>) | Update parameters and appearance, according to the matrix transform. |
| virtual [Accept](./accept/)(const System::SharedPtr\<AnnotationSelector\>\&) | Accepts visitor for annotation processing. |
| virtual [ChangeAfterResize](./changeafterresize/)(const System::SharedPtr\<Matrix\>\&) | Update parameters and appearance, according to the matrix transform. |
| virtual [Flatten](./flatten/)() | Places annotation contents directly on the page, annotation object will be removed. |
| [get_Actions](./get_actions/)() | Gets list of annotatation actions. |
| virtual [get_ActiveState](./get_activestate/)() | Gets current annotation appearance state. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ url: /cpp/aspose.pdf.annotations/annotation/accept/
Accepts visitor for annotation processing.

```cpp
virtual void Aspose::Pdf::Annotations::Annotation::Accept(System::SharedPtr<AnnotationSelector> visitor)=0
virtual void Aspose::Pdf::Annotations::Annotation::Accept(const System::SharedPtr<AnnotationSelector> &visitor)=0
```


| Parameter | Type | Description |
| --- | --- | --- |
| visitor | System::SharedPtr\<AnnotationSelector\> | [AnnotationSelector](../../annotationselector/) object. |
| visitor | const System::SharedPtr\<AnnotationSelector\>\& | [AnnotationSelector](../../annotationselector/) object. |

## See Also

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ url: /cpp/aspose.pdf.annotations/annotation/changeafterresize/
Update parameters and appearance, according to the matrix transform.

```cpp
virtual void Aspose::Pdf::Annotations::Annotation::ChangeAfterResize(System::SharedPtr<Matrix> transform)
virtual void Aspose::Pdf::Annotations::Annotation::ChangeAfterResize(const System::SharedPtr<Matrix> &transform)
```


| Parameter | Type | Description |
| --- | --- | --- |
| transform | System::SharedPtr\<Matrix\> | [Matrix](../../../aspose.pdf/matrix/) that use for transformation (resize). |
| transform | const System::SharedPtr\<Matrix\>\& | [Matrix](../../../aspose.pdf/matrix/) that use for transformation (resize). |

## See Also

Expand Down
48 changes: 24 additions & 24 deletions english/cpp/aspose.pdf.annotations/annotationselector/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,35 +23,35 @@ class AnnotationSelector : public Aspose::Pdf::Annotations::IAnnotationVisitor
| [AnnotationSelector](./annotationselector/)() | Initializes new instance of the [AnnotationSelector](./) class. |
| [AnnotationSelector](./annotationselector/)(const System::SharedPtr\<Annotation\>\&) | Initializes new [AnnotationSelector](./) object. |
| [get_Selected](./get_selected/)() const | The list of selected objects. |
| [Visit](./visit/)(System::SharedPtr\<LinkAnnotation\>) override | Select link annotation if [AnnotationSelector](./) was initialized with [LinkAnnotation](../linkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<FileAttachmentAnnotation\>) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FileAttachmentAnnotation](../fileattachmentannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<TextAnnotation\>) override | Select text annotation if [AnnotationSelector](./) was initialized with [TextAnnotation](../textannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<LinkAnnotation\>\&) override | Select link annotation if [AnnotationSelector](./) was initialized with [LinkAnnotation](../linkannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<FileAttachmentAnnotation\>\&) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FileAttachmentAnnotation](../fileattachmentannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<TextAnnotation\>\&) override | Select text annotation if [AnnotationSelector](./) was initialized with [TextAnnotation](../textannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<RedactionAnnotation\>\&) | Select redact annotation if [AnnotationSelector](./) was initialized with RedactAnnotation object. |
| [Visit](./visit/)(System::SharedPtr\<FreeTextAnnotation\>) override | Select freetext annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<HighlightAnnotation\>) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<UnderlineAnnotation\>) override | Select underline annotation if [AnnotationSelector](./) was initialized with [UnderlineAnnotation](../underlineannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<StrikeOutAnnotation\>) override | Select strikeOut annotation if [AnnotationSelector](./) was initialized with [StrikeOutAnnotation](../strikeoutannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<SquigglyAnnotation\>) override | Select squiggly annotation if [AnnotationSelector](./) was initialized with [SquigglyAnnotation](../squigglyannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<PopupAnnotation\>) override | Select popup annotation if [AnnotationSelector](./) was initialized with [PopupAnnotation](../popupannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<LineAnnotation\>) override | Select line annotation if [AnnotationSelector](./) was initialized with [LineAnnotation](../lineannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<CircleAnnotation\>) override | Select circle annotation if [AnnotationSelector](./) was initialized with [CircleAnnotation](../circleannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<SquareAnnotation\>) override | Select square annotation if [AnnotationSelector](./) was initialized with [SquareAnnotation](../squareannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<InkAnnotation\>) override | Select ink annotation if [AnnotationSelector](./) was initialized with [InkAnnotation](../inkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<PolylineAnnotation\>) override | Select polyline annotation if [AnnotationSelector](./) was initialized with [PolylineAnnotation](../polylineannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<PolygonAnnotation\>) override | Select polygon annotation if [AnnotationSelector](./) was initialized with [PolygonAnnotation](../polygonannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<CaretAnnotation\>) override | Select caret annotation if [AnnotationSelector](./) was initialized with [CaretAnnotation](../caretannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<StampAnnotation\>) override | Select stamp annotation if [AnnotationSelector](./) was initialized with [StampAnnotation](../stampannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<WidgetAnnotation\>) override | Select widget annotation if [AnnotationSelector](./) was initialized with [WidgetAnnotation](../widgetannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<FreeTextAnnotation\>\&) override | Select freetext annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<HighlightAnnotation\>\&) override | Select attachment annotation if [AnnotationSelector](./) was initialized with [FreeTextAnnotation](../freetextannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<UnderlineAnnotation\>\&) override | Select underline annotation if [AnnotationSelector](./) was initialized with [UnderlineAnnotation](../underlineannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<StrikeOutAnnotation\>\&) override | Select strikeOut annotation if [AnnotationSelector](./) was initialized with [StrikeOutAnnotation](../strikeoutannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<SquigglyAnnotation\>\&) override | Select squiggly annotation if [AnnotationSelector](./) was initialized with [SquigglyAnnotation](../squigglyannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<PopupAnnotation\>\&) override | Select popup annotation if [AnnotationSelector](./) was initialized with [PopupAnnotation](../popupannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<LineAnnotation\>\&) override | Select line annotation if [AnnotationSelector](./) was initialized with [LineAnnotation](../lineannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<CircleAnnotation\>\&) override | Select circle annotation if [AnnotationSelector](./) was initialized with [CircleAnnotation](../circleannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<SquareAnnotation\>\&) override | Select square annotation if [AnnotationSelector](./) was initialized with [SquareAnnotation](../squareannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<InkAnnotation\>\&) override | Select ink annotation if [AnnotationSelector](./) was initialized with [InkAnnotation](../inkannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<PolylineAnnotation\>\&) override | Select polyline annotation if [AnnotationSelector](./) was initialized with [PolylineAnnotation](../polylineannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<PolygonAnnotation\>\&) override | Select polygon annotation if [AnnotationSelector](./) was initialized with [PolygonAnnotation](../polygonannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<CaretAnnotation\>\&) override | Select caret annotation if [AnnotationSelector](./) was initialized with [CaretAnnotation](../caretannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<StampAnnotation\>\&) override | Select stamp annotation if [AnnotationSelector](./) was initialized with [StampAnnotation](../stampannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<WidgetAnnotation\>\&) override | Select widget annotation if [AnnotationSelector](./) was initialized with [WidgetAnnotation](../widgetannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<WatermarkAnnotation\>\&) | Select watermark annotation if [AnnotationSelector](./) was initialized with [WatermarkAnnotation](../watermarkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<MovieAnnotation\>) override | Select movie annotation if [AnnotationSelector](./) was initialized with [MovieAnnotation](../movieannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<MovieAnnotation\>\&) override | Select movie annotation if [AnnotationSelector](./) was initialized with [MovieAnnotation](../movieannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<RichMediaAnnotation\>\&) | Select movie annotation if [AnnotationSelector](./) was initialized with RichMedia annotation object. |
| [Visit](./visit/)(System::SharedPtr\<ScreenAnnotation\>) override | Select screen annotation if [AnnotationSelector](./) was initialized with [ScreenAnnotation](../screenannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<ScreenAnnotation\>\&) override | Select screen annotation if [AnnotationSelector](./) was initialized with [ScreenAnnotation](../screenannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<PDF3DAnnotation\>\&) | Select PDF3D annotation if [AnnotationSelector](./) was initialized with [PDF3DAnnotation](../pdf3dannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<ColorBarAnnotation\>\&) | Select ColorBar annotation if [AnnotationSelector](./) was initialized with ColorBar object. |
| [Visit](./visit/)(System::SharedPtr\<TrimMarkAnnotation\>) override | Selects the *trimMark* if the [AnnotationSelector](./) was initialized with a [TrimMarkAnnotation](../trimmarkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<BleedMarkAnnotation\>) override | Selects the *bleedMark* if the [AnnotationSelector](./) was initialized with a [BleedMarkAnnotation](../bleedmarkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<RegistrationMarkAnnotation\>) override | Selects the *registrationMark* if the [AnnotationSelector](./) was initialized with a [RegistrationMarkAnnotation](../registrationmarkannotation/) object. |
| [Visit](./visit/)(System::SharedPtr\<PageInformationAnnotation\>) override | Selects the *pageInformation* if the [AnnotationSelector](./) was initialized with a [PageInformationAnnotation](../pageinformationannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<TrimMarkAnnotation\>\&) override | Selects the *trimMark* if the [AnnotationSelector](./) was initialized with a [TrimMarkAnnotation](../trimmarkannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<BleedMarkAnnotation\>\&) override | Selects the *bleedMark* if the [AnnotationSelector](./) was initialized with a [BleedMarkAnnotation](../bleedmarkannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<RegistrationMarkAnnotation\>\&) override | Selects the *registrationMark* if the [AnnotationSelector](./) was initialized with a [RegistrationMarkAnnotation](../registrationmarkannotation/) object. |
| [Visit](./visit/)(const System::SharedPtr\<PageInformationAnnotation\>\&) override | Selects the *pageInformation* if the [AnnotationSelector](./) was initialized with a [PageInformationAnnotation](../pageinformationannotation/) object. |
## See Also

* Class [IAnnotationVisitor](../iannotationvisitor/)
Expand Down
Loading
Loading