| Syntax: |
|
[C#]
public bool Add();
public bool Add(Image image, int textPosition);
public bool Add(Image image, HorizontalAlignment alignment, int textPosition, ImageInsertionMode insertionMode);
public bool Add(Image image, Point location, int textPosition, ImageInsertionMode insertionMode);
public bool Add(Image image, int page, Point location, ImageInsertionMode insertionMode);
public bool Add(Image image, Point location, ImageInsertionMode insertionMode);
[Visual Basic]
Public Function Add() As Boolean
Public Function Add(ByVal image As Image, ByVal textPosition As Integer) As Boolean
Public Function Add(ByVal image As Image, ByVal alignment As HorizontalAlignment, ByVal textPosition As Integer, _
ByVal insertionMode As ImageInsertionMode) As Boolean
Public Function Add(ByVal image As Image, ByVal location As Point, ByVal textPosition As Integer, _
ByVal insertionMode As ImageInsertionMode) As Boolean
Public Function Add(ByVal image As Image, ByVal page As Integer, ByVal location As Point, _
ByVal insertionMode As ImageInsertionMode) As Boolean
|
|
|
| Parameter |
|
Description |
|
| |
| image |
|
Specifies the image to add.
|
| textPosition |
|
Specifies the text position at which the
image is to be inserted. If -1 is specified, the image is inserted at the current input position.
|
| alignment |
|
Specifies the image's horizontal alignment.
It can be one of the following values:
| Value |
|
Meaning |
|
| |
| Left | | The image is left aligned, relative to the paragraph to which it is anchored.
|
| Right | | The image is right aligned, relative to the paragraph to which it is anchored.
|
| Centered | | The image is centered, relative to the paragraph to which it is anchored.
|
| Justify | | This value is not supported for images.
|
|
| location |
|
Specifies the location, in twips, at which the
image is to be inserted. This is a location relative to the top left corner either of a page or of a paragraph.
|
| insertionMode |
|
Specifies how text flows around the
newly inserted image. It can be one of the following values:
| Value |
|
Meaning |
|
| |
| AsCharacter | | This value cannot be used with the ImageCollection.Add method.
|
| DisplaceCompleteLines | | The text stops at the top and continues at the bottom of the image.
|
| DisplaceText | | The text flows around the image and empty areas at the left and right side are filled.
|
|
| page |
|
Specifies the number of a page beginning with 1 where
the image is located.
|
|