(Only for compatibility) Gets or sets a value determining whether a text frame is treated as a single character or the document's text either flows around or overwrites the text frame. If the documents text flows around or overwrites the text frame, this property also determines whether the text frame is moved with the text or fixed positioned on a page.

Syntax

public new TextFrameInsertionMode InsertionMode { get; }
Public ReadOnly Property InsertionMode As TextFrameInsertionMode

Members

Member Description
AsCharacter The text frame is inserted in the text as a single character.
DisplaceCompleteLines The text frame is inserted at a certain geometrical location. The text stops at the top and continues at the bottom of the text frame.
DisplaceText The text frame is inserted at a certain geometrical location. The text flows around the text frame and empty areas at the left and right side are filled.
AboveTheText The text frame is inserted at a certain geometrical location above the text. This means that the text frame overwrites the text.
BelowTheText The text frame is inserted at a certain geometrical location below the text. This means that the text overwrites the text frame.
MoveWithText The text frame is connected with a paragraph and moved with the text.
FixedOnPage The text frame is fixed positioned on a page.

Remarks

The values of the TextFrameInsertionMode enumeration can be combined. The following combinations are possible:

DisplaceCompleteLines and MoveWithText

DisplaceCompleteLines and FixedOnPage

DisplaceText and MoveWithText

DisplaceText and FixedOnPage

AboveTheText and MoveWithText

AboveTheText and FixedOnPage

BelowTheText and MoveWithText

BelowTheText and FixedOnPage

AsCharacter

For all other combinations an exception is thrown.