
Gets or sets a value determining whether an image is treated as a single character or the document's text flows around the image. If the documents text flows around the image, this property also determines whether the image is moved with the text or fixed positioned on a page.
[C#]
public ImageInsertionMode InsertionMode { get; set; }
[Visual Basic]
Public Property InsertionMode() As ImageInsertionMode
| Value | Description | |
| AsCharacter | The image is inserted in the text as a single character. | |
| DisplaceCompleteLines | The image is inserted at a certain geometrical location. The text stops at the top and continues at the bottom of the image. | |
| DisplaceText | The image is inserted at a certain geometrical location. The text flows around the image and empty areas at the left and right side are filled. | |
| MoveWithText | The image is connected with a paragraph and moved with the text. | |
| FixedOnPage | The image is fixed positioned on a page. |
The values of the ImageInsertionMode enumeration can be combined. The following combinations are possible:
DisplaceCompleteLines and MoveWithText
DisplaceCompleteLines and FixedOnPage
DisplaceText and MoveWithText
DisplaceText and FixedOnPage
AsCharacter
For all other combinations an exception is thrown.
The following example iterates through all images and sets the insertion mode to DisplaceText and MoveWithText.
[C#]
foreach (TXTextControl.Image image in textControl1.Images)
{
image.InsertionMode = TXTextControl.ImageInsertionMode.DisplaceText |
TXTextControl.ImageInsertionMode.MoveWithText;
}
[Visual Basic]
For Each Image As TXTextControl.Image In TextControl1.Images
Image.InsertionMode = TXTextControl.ImageInsertionMode.DisplaceText + _
TXTextControl.ImageInsertionMode.MoveWithText
Next