Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
In Aspose.Words, TextBox class is used to specify how a text is displayed inside a shape. It provides a public property named as parent to get the parent shape for the text box to allow customer to find linked Shape from linked TextBox.
TextBox class provides isValidLinkTarget method in order to check whether the TextBox can be linked to the target Textbox.
The following code example shows how to check if the TextBox can be linked to the target Textbox:
There are several ways to display text in a shape. The textBox can be the Head, Middle, or Tail of a sequence.
The following code example shows how to check if TextBox is a Head, Tail, or Middle of the sequence:
Using the textBox method you can break the link to the next TextBox.
The following code example shows how to break a link for a TextBox:
Q: How can I obtain the parent Shape of a TextBox?
A: Use the parent property of the TextBox object. It returns the Shape that contains the textbox, allowing you to access shape‑level properties or other linked shapes.
Q: How do I determine whether a TextBox is the head, middle, or tail of a linked sequence?
A: The Shape.textBox object exposes the boolean properties isHead, isMiddle, and isTail. Check these properties to know the position of the textbox within the linked chain.
Q: What method should I call to break an existing link between two TextBox objects?
A: Call the breakLink() method on the Shape.textBox instance. This removes the link to the next textbox in the sequence, leaving the current textbox isolated.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.