Inserts a new text frame in a Text Control document.
public bool Add(TextFrame textFrame, int textPosition);
public bool Add(TextFrame textFrame, HorizontalAlignment alignment, int textPosition, TextFrameInsertionMode insertionMode);
public bool Add(TextFrame textFrame, System.Drawing.Point location, int textPosition, TextFrameInsertionMode insertionMode);
public bool Add(TextFrame textFrame, int page, System.Drawing.Point location, TextFrameInsertionMode insertionMode);
public bool Add(TextFrame textFrame, System.Drawing.Point location, TextFrameInsertionMode insertionMode);
public bool Add(TextFrame textFrame, TextFrameInsertionMode insertionMode);
Parameter | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
text |
Specifies the text frame to add. | ||||||||||
text |
Specifies the text position at which the text frame is to be inserted. If -1 is specified, the text frame is inserted at the current input position. | ||||||||||
alignment | Specifies the text frame's horizontal alignment. It can be one of the Horizontal
|
||||||||||
location | Specifies the location, in twips, at which the text frame is to be inserted. This is a location relative to the top left corner either of a page or of a paragraph. | ||||||||||
insertion |
Specifies how the text flow is handled. It can be one of the values of the Text |
||||||||||
page | Specifies the number of a page beginning with 1 where the text frame is located. |
The return value is true, if the text frame could be added. Otherwise, it is false.